Aufgabe 3 Zurück
public class Blatt2_Dreieck {
public static void main
(String[] args)
{
setBackground(Color.BLUE);
int a;
int b;
int c;
a = Kon.readInt("Geben
sie die gewünschte Höhe ein! ");
for (b = 0; b
<= a ; b = b+1 ) {
for (c =1; ;c <= a; = c+1) {
System.out.print();
}
System.out.println("
");
}
}
}