Advertisement
ranisalt

Exemplo Do

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