Skip to content

Instantly share code, notes, and snippets.

@fkohlgrueber
Created December 7, 2017 18:08
Show Gist options
  • Save fkohlgrueber/1f492a96bc196086adedb197e7ba9a26 to your computer and use it in GitHub Desktop.
Save fkohlgrueber/1f492a96bc196086adedb197e7ba9a26 to your computer and use it in GitHub Desktop.
Quadratzahlen
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