|
// 2-28-03 9:30:00
AM Justin Wolfe + Andrew Boyd
#include
<iostream>
using std::cout;
using std::cin;
using std::endl;
int main ( 515_designs )
{
int var1 = 0;
int var2 = 0;
cout << "On a 1 to 10 scale how tough are you? ";
cin >> var1;
cout << "\n";
if ( var1 <= 10 )
cout << "You're not tough... 515 designs is tough" <<
endl;
else
cout << "You're still not tough... 515 designs is more tough"
<< endl;
return 0;
}
|