Advertisement
Guest User

Untitled

a guest
Jan 27th, 2020
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace ConsoleApplication1
  7. {
  8.  
  9. class Program
  10. {
  11. enum lunaAnului
  12. {
  13. Ianuarie = 1,
  14. Februarie,
  15. Martie,
  16. Aprilie,
  17. Mai,
  18. Iunie,
  19. Iulie,
  20. August,
  21. Septembrie,
  22. Octombrie,
  23. Noiembrie,
  24. Decembrie
  25. }
  26. static void Main(string[] args)
  27. {
  28. Console.WriteLine("Luna Mai este a {0} ", (int)lunaAnului.Mai + "-a luna din an.");
  29. Console.ReadLine();
  30. }
  31. }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement