Advertisement
ranisalt

Exemplo While

Dec 27th, 2012
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.06 KB | None | 0 0
  1. int x = 0;
  2. while (x <= 10)
  3. {
  4.     Console.WriteLine("{0}", x++);
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement