我的while循環出現問題。該程序詢問用戶的名字,並在用戶輸入之後,程序會詢問你打印輸入的次數。Do-while循環不起作用
我一直停留在我的while循環相當一個時間只能做,如果我這樣做它的工作:} while (antal > some random number)
package uppg2;
import java.util.Scanner;
public class Uppg2 {
public static void main(String[] args) {
Scanner name = new Scanner(System.in);
Scanner ant = new Scanner(System.in);
int antal;
String namn;
System.out.print("Whats your name?: ");
namn = name.nextLine();
System.out.print("How many times u wanna print ur name?: ");
antal = ant.nextInt();
do {
System.out.print(namn);
} while (????);
antal++;
namn = null;
antal = 0;
}
}
for循環出了什麼問題? 'for(int i = 0; i
它是否必須是do-while,for循環會更容易,while循環會更安全'do-while' ... – MadProgrammer
@MadProgrammer我假設作業問題需要它是一個while while循環。 –