fork download
  1. class JavaApplication8 {
  2. public static void main(String[] args) {
  3. for (int i = 1; i <= 2; ++i) {
  4. for (int j = 1; j <= 4; ++j) {
  5. System.out.printf("%d%d\n", i, j);
  6. }
  7. }
  8. }
  9. }
Success #stdin #stdout #stderr 0.04s 711168KB
stdin
Standard input is empty
stdout
11
12
13
14
21
22
23
24
stderr
Java HotSpot(TM) Client VM warning: No monotonic clock was available - timed services may be adversely affected if the time-of-day clock changes