Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. public class Program
  2. {
  3. static void Main(string[] args)
  4. {
  5. n();
  6. Console.ReadKey();
  7.  
  8. }
  9. public static int n()
  10. {
  11. string result;
  12. string[] chars = new string[6] { "С", "Е", "Р", "Е", "Г", "А" };
  13.  
  14.  
  15. for (int j = 0; j < chars.Length; j++)
  16. {
  17. Thread.Sleep(3000);
  18. Console.WriteLine(chars[j]);
  19. }
  20. return 1;
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement