Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Task7
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- int userInput;
- string message;
- Console.WriteLine("Введите то, что хотите сообщить: ");
- message = Console.ReadLine();
- Console.Write("Введите сколько раз вы хотите поздравить человека: ");
- userInput = Convert.ToInt32(Console.ReadLine());
- for (int i = 0; i < userInput; i++)
- {
- Console.WriteLine(message);
- }
- }
- }
- }
Add Comment
Please, Sign In to add comment