Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 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 ConsoleApplication37
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13.  
  14.  
  15. for (int h = 0; h < 24; h++)
  16. {
  17.  
  18. for (int d = 0; h < 60; d++)
  19. {
  20. for (int s = 0; s < 60; s++)
  21. {
  22. Console.WriteLine("h:" + h + " d" + d + " s " + s);
  23. for(int delay=1; delay<=86400; delay++)
  24. {
  25.  
  26. }
  27. }
  28.  
  29.  
  30. }
  31.  
  32.  
  33.  
  34.  
  35. }
  36.  
  37.  
  38. }
  39. }
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement