sander the man
Gebruiker
- Lid geworden
- 7 jun 2007
- Berichten
- 94
Code:
double numb1;
double numb2;
double som;
char product;
cout << "eerste nummer:";
cin >> numb1;
cout << endl;
cout << "/, *, - of +:";
cin >> product;
cout << endl;
cout << "tweede getal:";
cin >> numb2;
cout << endl;
som = numb1; product; numb2;
cout << numb1 << product << numb2 << "=" << som;
cout << endl;
system("PAUSE");
