正如標(biāo)題所說,我的 for 循環(huán)語句僅在測(cè)試條件被證明為假時(shí)才執(zhí)行。 public static int exponent(int a,int b) { int c = a; int count; Scanner keyboard = new Scanner(System.in); for(count = 1; count < b; count = count + 1, c = c * a); { System.out.println(count); } return c; }據(jù)我所知,這個(gè) for 循環(huán)應(yīng)該為循環(huán)的每次迭代顯示變量“count”的值,但是它最終只顯示變量“count”的最終值。
1 回答

jeck貓
TA貢獻(xiàn)1909條經(jīng)驗(yàn) 獲得超7個(gè)贊
試試這個(gè)。
public static int exponent(int a,int b)
{
int c = a;
int count;
Scanner keyboard = new Scanner(System.in);
for(count = 1; count < b; count = count + 1, c = c * a)
{
System.out.println(count);
}
return c;
}
for 語句后的那個(gè)分號(hào)是不正確的。
添加回答
舉報(bào)
0/150
提交
取消