Guest User

Untitled

a guest
Jul 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. public class Laufzeitfehler {
  2.  
  3. int[][] feld = new int[3][3];
  4. //int[][] feld = {{2,-2,67,2,90},{33,3,-6,5,2},{4,2,2,78,93}};
  5. feld[0][0] = 12;
  6.  
  7. public void ausgabe() {
  8.  
  9. IO.println("Hallo");
  10. IO.println("Das ist: " +feld[0][0]);
  11.  
  12. }
  13. public static void main(String[] args) {
  14.  
  15. Laufzeitfehler l1 = new Laufzeitfehler();
  16. l1.ausgabe();
Add Comment
Please, Sign In to add comment