提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
以下程序打印什么?
public class Main { public static void main(String[] args) {/*n o w j a v a . c o m 提供*/ int x = 1; int total = 0; while (x <= 10) { int y = x * x; System.out.println(y); total += y; ++x; } System.out.printf("Total is %d%n", total); } /* from NowJava.com - 时代Java */ }