Advertisement
Spocoman

02. Nums 1...10

Aug 21st, 2024
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.70 KB | None | 0 0
  1. namespace Nums1To10
  2. {
  3.     class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.             Console.WriteLine(1);
  8.             Console.WriteLine(2);
  9.             Console.WriteLine(3);
  10.             Console.WriteLine(4);
  11.             Console.WriteLine(5);
  12.             Console.WriteLine(6);
  13.             Console.WriteLine(7);
  14.             Console.WriteLine(8);
  15.             Console.WriteLine(9);
  16.             Console.WriteLine(10);
  17.         }
  18.     }
  19. }
  20.  
  21. ИЛИ:
  22.  
  23. namespace Nums1To10
  24. {
  25.     class Program
  26.     {
  27.         static void Main(string[] args)
  28.         {
  29.             for (int i = 1; i < 11; i++)
  30.             {
  31.                 Console.WriteLine(i);
  32.             }
  33.         }
  34.     }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement