Advertisement
Uriel133

2048

Mar 10th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.21 KB | None | 0 0
  1. // @project 2048
  2. // @author Uriel133
  3. // @version 0.1
  4. // @since 10-3-2019
  5.  
  6. Console.WriteLine("Enter a number");
  7. int x = int.Parse(Console.ReadLine());
  8. for (int i = 1; x >= i; i = i + 1)
  9. {
  10. Console.WriteLine(i);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement