singleLines.java 495 B

12345678910111213141516171819202122232425262728293031323334
  1. boolean hasLicense();
  2. boolean canEvaluate();
  3. boolean shouldAbort = false;
  4. boolean bell;
  5. boolean light;
  6. boolean hasBell;
  7. boolean hasLight;
  8. public class TestBoolean {
  9. private boolean isActive;
  10. public boolean isActive() {
  11. return isActive;
  12. }
  13. }
  14. int i = 42;
  15. int k = (i * i) / (42 % 3);
  16. for (int j = 12; j < i; i++) {
  17. }
  18. int[] liste = new int[7];
  19. liste[5] = 5;
  20. int[][] tabelle = new int[20][30];
  21. tabelle[1][2] = 1;
  22. int[][][] quader = new int[5][7][2];
  23. quader[0][0][0] = 0;