Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. int x = 0;
  8. int y;
  9.  
  10. cout<<"Enter a number: ";
  11. cin>> x;
  12.  
  13. while(x != 0){
  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.";
  24. }
  25. }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement