Java-Aufgabe whileschleife.java

Zurück
public class whileschleife{
  public static void main(String[] args) { 
    int zahl= 0;    
     while (zahl<10000){
       if ( zahl%2==0){
         System.out.println("Test"+zahl);
       } else{
         System.out.println("");
       }
       zahl=zahl+1;
     }    
  }
}