#116937 - SickNalzic - Wed Jan 31, 2007 4:38 am
But i can't find a good compiler program similar to visual studio.. i can't get that program b/c i accidentally uninstalled service pack 2 (don't ask <_>), and can't reinstall it (also don't ask :P)... all I really need right now is a good compiler and that comes with a bunch of include files, but an editor (like visual studo) would be nice aswell, for the future... i used some bloodshed program but i can't figure it out (im too used to visual studio >_<) it might just be because im tired, so ima look more into it in the morning... so summed up, does anyone know a good program for compiling c++?
this is what i've done so far (nothing complex, obviously)
this is what i've done so far (nothing complex, obviously)
Code: |
#include <iostream.h>
void main() { float num1; float num2; float total; cout << "Type the first number: "; cin >> num1; cout << "Type the second number: "; cin >> num2; total = num1 + num2; cout << "The sum of these numbers is: " << total << end1; } |