这是我无法解决的作业问题。在Java中。
假设我们要编写一个for循环,它产生以下内容
九行输出:
4:
8:
12:
16:
20:
24:
28:
32:
36:
假设我们将使用以下for循环来生成输出:
int index;
for (index = __A__; __B__ ; __C__ ) {
System.out.printf(__D__, index);
}
回答以下每个代码的四个空格应该是什么?
_ _ 一个 _ _
_ _ B _ _
_ _ C _ _
_ _ D _ _
最佳答案
int index;
for (index = __A__; __B__ ; __C__ ) {
System.out.printf(__D__, index);
}
如果看到输出,则数字(索引)以4开头。
因此,A:4
结束于36。
因此,B:index
增加4。
因此,C:index + = 4
印刷行的格式为D:“%2d:\ n”
关于java - 循环和输出,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29358923/