Advertisement
Montagne94

8. Освоение циклов

Jan 7th, 2025
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.60 KB | Source Code | 0 0
  1. using System;
  2.  
  3. namespace HomeWork
  4. {
  5.     internal class Program
  6.     {
  7.         public static void Main(string[] args)
  8.         {
  9.             Console.Write("Введите сообщение: ");
  10.             string message = Console.ReadLine();
  11.             Console.Clear();
  12.            
  13.             Console.Write("Сколько раз вывести сообщение? ");
  14.             int repeatCount = int.Parse(Console.ReadLine());
  15.             Console.Clear();
  16.            
  17.             for (int i = 0; i < repeatCount; i++)
  18.                 Console.WriteLine($"{i + 1}: {message}");
  19.         }
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement