fork download
  1. namespace Problem_7.Divisible_by_3
  2. {
  3. using System;
  4.  
  5. public class Program
  6. {
  7. public static void Main()
  8. {
  9. for (int i = 3; i <= 100; i += 3)
  10. {
  11. Console.WriteLine(i);
  12. }
  13. }
  14. }
  15. }
Success #stdin #stdout 0.01s 131776KB
stdin
Standard input is empty
stdout
3
6
9
12
15
18
21
24
27
30
33
36
39
42
45
48
51
54
57
60
63
66
69
72
75
78
81
84
87
90
93
96
99