Yachkov

num from 1 to 100

Jan 31st, 2021
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.53 KB | None | 0 0
  1. using System;
  2. using System.ComponentModel;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.Design;
  5. using System.Globalization;
  6. using System.Net.Http.Headers;
  7. using System.Reflection;
  8. using System.Runtime.ConstrainedExecution;
  9. using System.Security.Cryptography;
  10.  
  11. namespace SomeExcercises
  12. {
  13.     class Program
  14.     {
  15.         static void Main(string[] args)
  16.         {
  17.             for (int i = 1; i <= 100; i++)
  18.             {
  19.                 Console.WriteLine(i);
  20.             }
  21.  
  22.         }
  23.     }
  24. }
  25.  
  26.  
  27.  
  28.  
Advertisement
Add Comment
Please, Sign In to add comment