Neon1x1st

HMfA

Mar 14th, 2021
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CSharpLight
  7. {
  8.  
  9. public static class Program
  10. {
  11. public static void Main()
  12. {
  13. int guestCount = 8;
  14. Console.Write("Придумайте текст приветствия:");
  15. String greeting = Console.ReadLine();
  16.  
  17. for(int i = 1;i <= guestCount;i++)
  18. {
  19. Console.WriteLine(greeting);
  20. }
  21. }
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment