Advertisement
Guest User

Untitled

a guest
Nov 26th, 2015
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.31 KB | None | 0 0
  1. bool arebuttshot=true; //bool variable either true or false
  2. int morebutts=0; //int type variable can haz 8bytes is cool no strings just real numbers
  3.  
  4. while(arebuttshot==true){ // loop beginning
  5.     morebutts=morebutts+1; //increasing morebutts by 1
  6.     Console.WriteLine("You get "+morebutts+" butts."); //output
  7.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement