Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
compiler?
I got turbo C++ a while ago it's about the best i've used. Download it here http://www.turbomirror.com/
i'm not truely sure how advanced you are at programming, but make sure that you include the proper libraries. for cout and cin, infact a bunch of c++ reservered words, you need the iostream library, make sure this is at the top of your code
#include <iostream>
here is a quick template that you can use if you'd like, its what i use everytime i write code.
/*
Name:
Course: CMPSC 101 Sect X
Assignment:
File Name:
This program …
Input variables:
Output variables:
Processing variables:
Algorithm:
*/
#include <iostream>
using namespace std;
int main()
{
return 0;
}
Hope i helped!