This is Dan.
2011-01-29 08:10:14 UTC
#include
using namespace std;
int main() {
int n;
start:
cout << "Type the number 17, then press ENTER. " << endl;
cin >> n;
if (n != 17) {
cout << "Error: please re-enter number. " << endl;
else;
cout << "Congratulations! You're good at following instructions. " << endl;
}
system ("pause");
goto start;
return 0;
}