Advertisement
sivancheva

LOcalElections

Jul 4th, 2017
569
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 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.  
  8. //.............
  9. //...+-----+...
  10. //...|.\./.|...
  11. //01.|..X..|...
  12. //...|./.\.|...
  13. //...+-----+...
  14.  
  15.  
  16. namespace _03_LocalElections
  17. {
  18. class LocalElections
  19. {
  20. static void Main(string[] args)
  21. {
  22. int numCandidates = int.Parse(Console.ReadLine());
  23. int vote = int.Parse(Console.ReadLine());
  24. string symbol = Console.ReadLine();
  25. int counter = 0;
  26.  
  27.  
  28.  
  29. while (counter != numCandidates)
  30. {
  31. if (counter == numCandidates)
  32. {
  33. Console.WriteLine(new string('.', 13));
  34. }
  35. }
  36.  
  37.  
  38. }
  39. }
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement