我试图了解 Java 中递增的基础知识...这里我有一个基本示例,但我不太清楚它的输出...所以它以 4 开始,当然是 2 * 2,而 9是 4 * 4 + 1,但现在如何得到 16 呢?谢谢你
public class Mystery
{
public static void main( String[] args )
{
int y;
int x = 2;
int total = 0;
while ( x <= 10 )
{
y = x * x;
System.out.println( y );
total += y;
++x;
}
System.out.printf( "Total is %d\n", total );
} // end main
} // end class Mystery
输出
4
9
16
25
36
49
64
81
100
Total is 384