Quote:
using namespace std;
int main()
{
int a,b;
int uitkomst;
char exit;
a = 25;
b = 5;
a = a * 4;
uitkomst = a * b;
cout << "de uitkomst moet 500 zijn dus controleer het goed\n:"<< uitkomst;
cin>>exit;
return 0;
} |
Try that.
Sometimes it want's all declarations at the top of the code... Ah well, what can you do.