Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 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 I2_filingr
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. //proměnné
  14. string výpis = "";
  15. int počet;
  16.  
  17. //barvy
  18. Console.BackgroundColor = ConsoleColor.White;
  19. Console.ForegroundColor = ConsoleColor.Magenta;
  20. Console.Clear();
  21.  
  22. //nadpis
  23. Console.WriteLine("Účtenka");
  24. Console.WriteLine("*******");
  25. Console.WriteLine();
  26.  
  27. //vstup
  28. Console.Write("Zadejte počet produktů: ");
  29. počet = Convert.ToInt32(Console.ReadLine());
  30. for (int i = 0; i < počet; i++)
  31. {
  32. výpis =
  33. }
  34.  
  35.  
  36.  
  37. Console.ReadKey();
  38. }
  39. }
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement