Advertisement
Guest User

Untitled

a guest
Jan 29th, 2020
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Úkol_č._7
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. Console.BackgroundColor = ConsoleColor.Blue;
  14. Console.Clear();
  15. Console.WriteLine("**********************************************");
  16. Console.ForegroundColor = ConsoleColor.Green;
  17. Console.WriteLine("*Programoval: Michal Kůrka(c) 2020 Třída ME4 *");
  18. Console.WriteLine("**********************************************");
  19. Console.BackgroundColor = ConsoleColor.Red;
  20.  
  21.  
  22. Console.SetCursorPosition(10,10);
  23. Console.ForegroundColor = ConsoleColor.White;
  24. Console.BackgroundColor = ConsoleColor.DarkYellow;
  25. string jmeno = Console.ReadLine();
  26.  
  27.  
  28. Console.Write("Zadej své jméno: ");
  29.  
  30.  
  31.  
  32. Console.ReadKey();
  33.  
  34. }
  35. }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement