Anonim_999

3

Dec 22nd, 2022
801
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.52 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 count;
  12.  
  13.             if (int.TryParse(userInput, out count))
  14.                 for (int i = 1; i <= count; i++)
  15.                     Console.WriteLine($"Счетчик: {i}");
  16.             else
  17.                 Console.WriteLine("ошибка ввода");
  18.         }
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment