fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. for (var i = 1; i <= 12; i += 1) {
  8. Console.WriteLine(
  9. "Quarter for month {0} ends in month {1}",
  10. i,
  11. 3 * Math.Ceiling((double)i / 3)
  12. );
  13. }
  14. }
  15. }
Success #stdin #stdout 0.02s 14812KB
stdin
Standard input is empty
stdout
Quarter for month 1 ends in month 3
Quarter for month 2 ends in month 3
Quarter for month 3 ends in month 3
Quarter for month 4 ends in month 6
Quarter for month 5 ends in month 6
Quarter for month 6 ends in month 6
Quarter for month 7 ends in month 9
Quarter for month 8 ends in month 9
Quarter for month 9 ends in month 9
Quarter for month 10 ends in month 12
Quarter for month 11 ends in month 12
Quarter for month 12 ends in month 12