Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
namnCounter = input.nextInt()
import java.io.*;
public class Wort {
public static void main(String[] args) {
BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
try {
System.out.println("Geben sie ein Wort ein: ");
String wort = input.readLine();
System.out.println("Geben sie die Anzahl der Ausgabe des Wortes ein: ");
int anzahl = Integer.parseInt(input.readLine());
for(int i=0;i<anzahl;i++) {
System.out.println(""+wort);
}
}
catch(IOException e) {
e.printStackTrace();
}
}
}
import java.io.*;
public class Wort {
public static void main(String[] args) {
BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
try {
System.out.println("Geben sie ein Wort ein: ");
String wort = input.readLine();
System.out.println("Geben sie die Anzahl der Ausgabe des Wortes ein: ");
int anzahl = Integer.parseInt(input.readLine());
int i = 0;
do {
System.out.println(""+wort);
i++;
}
while(i<anzahl);
}
catch(IOException e) {
e.printStackTrace();
}
}
}
ein bisschen Eigeninitiative...