fork download
  1. public class Main
  2. {
  3. public static void main(String[] args)
  4. {
  5. number372();
  6. }
  7.  
  8. static void number372()
  9. {
  10. int n = 3;
  11.  
  12. for (int c = 0; c < 90;)
  13. {
  14. if (n % 7 != 2)
  15. {
  16. if (c % 10 == 0)
  17. {
  18. System.out.print(((c / 10) + 1) + ":");
  19. }
  20.  
  21. System.out.print(n + " ");
  22.  
  23. if (c % 10 == 9)
  24. {
  25. System.out.println();
  26. }
  27.  
  28. c++;
  29. }
  30.  
  31. n += 3;
  32. }
  33. }
  34. }
Success #stdin #stdout 0.06s 380224KB
stdin
Standard input is empty
stdout
1:3 6 12 15 18 21 24 27 33 36 
2:39 42 45 48 54 57 60 63 66 69 
3:75 78 81 84 87 90 96 99 102 105 
4:108 111 117 120 123 126 129 132 138 141 
5:144 147 150 153 159 162 165 168 171 174 
6:180 183 186 189 192 195 201 204 207 210 
7:213 216 222 225 228 231 234 237 243 246 
8:249 252 255 258 264 267 270 273 276 279 
9:285 288 291 294 297 300 306 309 312 315