Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2014
165
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 ConsoleApplication4
  8. {
  9. class Program
  10. {
  11.  
  12. static void Main(string[] args)
  13. {
  14. string[] hónapok = {"Január","Február","Március",
  15. "Április","Május","Június",
  16. "Július","Augusztus","Szeptember",
  17. "Október","November","December"};
  18.  
  19. string s;
  20. bool go=true;
  21. do
  22. {
  23. Console.Write("Add meg a hónapot: ");
  24. s = Console.ReadLine();
  25. for (int i = 0; i < hónapok.Length; i++)
  26. if (hónapok[i] == s) go = false;
  27. }
  28. while (go);
  29.  
  30. Console.WriteLine("\nVége.");
  31. Console.ReadKey();
  32. }
  33. }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement