就像标题所说的那样,我的for循环语句仅在证明测试条件为假之后才执行。
CREATE TABLE survey(
index_id INT PRIMARY KEY,
'between 1 and 10, how do you feel about the transparency of the scientific community?' VARCHAR(5)
);
据我所知,此for循环应为循环的每次迭代显示变量“ count”的值,但是最终只能显示变量“ count”的最终值。
答案 0 :(得分:2)
尝试一下。
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语句后的分号不正确。