50 lines
923 B
Java
50 lines
923 B
Java
|
import java.util.Scanner;
|
|||
|
|
|||
|
public class Unterschied_for_while {
|
|||
|
|
|||
|
public static void main(String[] args) {
|
|||
|
// TODO Auto-generated method stub
|
|||
|
|
|||
|
|
|||
|
/*for (Anfangswert; Abbruchbedingung; Z<EFBFBD>hler){
|
|||
|
*
|
|||
|
* }
|
|||
|
*
|
|||
|
*
|
|||
|
* while(Bedingung){
|
|||
|
*
|
|||
|
*
|
|||
|
* }
|
|||
|
*/
|
|||
|
|
|||
|
for(int i = 1; i<=5; i++) {//immer dann wenn man gneau wei<65> wie oft etwas durchlaufen soll
|
|||
|
System.out.println("Wurde erstellt Nr: " + i);
|
|||
|
}
|
|||
|
|
|||
|
Scanner scan = new Scanner(System.in);
|
|||
|
System.out.println("Dr<EFBFBD>cke 1 f<>r Schwierigkeitsgrad leicht \n Dr<44>cke 2 f<>r Mittel");
|
|||
|
|
|||
|
int userEingabe = scan.nextInt();
|
|||
|
int anzahlGegner = 0;
|
|||
|
|
|||
|
if (userEingabe == 1) {
|
|||
|
anzahlGegner = 10;
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
else if (userEingabe == 2) {
|
|||
|
anzahlGegner = 20;
|
|||
|
}
|
|||
|
|
|||
|
while(anzahlGegner != 0) {// wenn man nicht wei<65> wie oft etwas durchlaufen werden soll
|
|||
|
System.out.println("Gegner erstellt");
|
|||
|
anzahlGegner --;
|
|||
|
scan.close();
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
}
|