45 lines
1.1 KiB
Java
Executable File
45 lines
1.1 KiB
Java
Executable File
|
|
/**
|
|
* Beschreiben Sie hier die Klasse Schleifen.
|
|
*
|
|
* @author (Ihr Name)
|
|
* @version (eine Versionsnummer oder ein Datum)
|
|
*/
|
|
import java.util.Scanner; // Klasse Scanner wird importiert
|
|
public class Schleifen
|
|
{
|
|
public static void A1(){
|
|
for(int i=0; i<30;i++)
|
|
{
|
|
System.out.println ("Nur übung macht den Meister");
|
|
|
|
}
|
|
}
|
|
public static void A3a(){
|
|
for(int i=1; i<=20;i++)
|
|
{
|
|
System.out.println (Methoden.quadrat(i)); //aus klasse Methode wird quadrat mit i ausgeführt
|
|
}
|
|
|
|
}
|
|
public static void A3b(){
|
|
for (int i=1; i*i<500;i++) // egl. while schleife,weil eleganter und so aber geht auch so
|
|
{
|
|
System.out.println (i*i);
|
|
}
|
|
}
|
|
public static void A5(){
|
|
Scanner sc = new Scanner (System.in);
|
|
int zufallszahl = (int)(Math.random() *10+1);
|
|
System.out.println ("Erraten sie eine Zahl zwischen 1 und 10!");
|
|
int guess = sc.nextInt();
|
|
while ( guess != zufallszahl )
|
|
{
|
|
int i= sc.nextInt();
|
|
|
|
}
|
|
|
|
}
|
|
}
|
|
|