Advertisement
IGRODELOFF

HW: Mastering Cycles

Oct 30th, 2024 (edited)
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.68 KB | None | 0 0
  1. using System;
  2.  
  3. namespace homeWorkMasteringCycles
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int countTimes;
  10.             string hello = "Привет!";
  11.  
  12.             Console.Write("Введите количество появление сообщения - привет: ");
  13.             countTimes = Convert.ToInt32(Console.ReadLine());
  14.  
  15.             while (countTimes-- > 0)
  16.             {
  17.                 Console.WriteLine(hello);
  18.             }
  19.  
  20.             Console.WriteLine(" ");
  21.  
  22.             for (int i = 0; i < countTimes; i++)
  23.             {
  24.                 Console.WriteLine(hello);
  25.             }
  26.         }
  27.     }
  28. }
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement