Advertisement
Guest User

Untitled

a guest
Nov 2nd, 2012
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include <iostream>
  2.  
  3. int PilzAdam, OtherModders;
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9.     cout << "How awesome is PilzAdam? \n";
  10.  
  11.     cin >> PilzAdam;
  12.  
  13.     cout << "How awesome are the Other Modders? \n";
  14.  
  15.     cin >> OtherModders;   
  16.  
  17.     if (PilzAdam > OtherModders)
  18.     {
  19.         cout << "PilzAdam is awesome!";
  20.     }
  21.  
  22. `   else
  23.     {
  24.         cout << "You are wrong!";
  25.     }
  26.  
  27.     return 0;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement