Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.36 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     double x;
  8.  
  9.     do {
  10.  
  11.         cout<<"Enter a number: ";
  12.         cin>> x;
  13.        
  14.         if(x == 1){
  15.             cout<<"WHY ARE YOU CHOOSING SMALL AS FUCK NUMBERS?" <<endl;
  16.         }
  17.    
  18.         if(x > 100000000){
  19.             cout<<"THATS MORE FUCKING LIKE IT!" <<endl;
  20.         }
  21.  
  22.         else{
  23.             cout<<"You boring fuck." <<endl;
  24.         }
  25.     } while (x != 0);
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement