Created
December 7, 2017 18:08
-
-
Save fkohlgrueber/1f492a96bc196086adedb197e7ba9a26 to your computer and use it in GitHub Desktop.
Quadratzahlen
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Quadratzahlen | |
{ | |
public static void main(String[] args) | |
{ | |
// Aufgabe: gib die ersten zehn Quadratzahlen auf der Konsole aus. | |
// | |
// Korrekte Ausgabe: | |
// 1 4 96 16 25 36 49 64 81 100 | |
// lösung hier :-) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment