for (int j = 10; j <= 1000; j *= 10) { for (int i = -1; i <= 1; i++ ) { System.out.print(i + j + " "); } }
int _ = 3;
int[] a = {1,2,3}; int[] b = a; System.out.print( b[1] ); a[1] = 3; System.out.print(" " + b[1]);
int j;
System.out.println(j = 10);
double x = 12.4; double y = x % 3;
for (int n = 8; n < 12; ++n ) { System.out.print(((n<10)? "_" : "") + n + " ") ; }
int i=2, j;
System.out.printf( "%x", Integer.MAX_VALUE );
3^2
for (int i = 0; i < 10; i += 3){ System.out.print(i + "-");}
convertertmp | Dec 02, 18:49 |
Jun 18, 09:15 | |
atest/erben | May 02, 10:37 |
atest/oop2 | Apr 18, 10:30 |
thm/Studium | Mar 30, 11:58 |
atest/oop1 | Mar 30, 11:57 |