Upload files to "Testo"

So gehts oderwat
main
Leon Schwenke 2025-12-20 17:01:49 +01:00
commit b7fe329ac0
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
public class Zeichenketten{
public static void main (String[] args){
char [] a = new char [4] {'J','a','v','a'};
char [] b = new char [] {'S','u','n',' ', 'M', 'i','c','r','o','s','y','s','t','e','m','s',',',' ','I','n','c','.'};
for (int i = 0; i < a.length; i++){
System.out.print(a[i]);
}
for (int i = 0; i < b.length; i++){
System.out.print(b[i]);
}
}
}