Anonim_999

5

Dec 22nd, 2022
860
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.58 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApp27
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             Console.Write($"Введите количество: ");
  10.             string userInput = Console.ReadLine();
  11.             int value;
  12.             int i = 1;
  13.  
  14.             if (int.TryParse(userInput,out value))
  15.             {
  16.                 while (i <= value)
  17.                 {
  18.                     Console.WriteLine($"Текущее значение счетчика: {i}");
  19.                     i++;
  20.                 }
  21.             }
  22.         }
  23.     }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment