集册 Java实例教程 以下程序打印什么?

以下程序打印什么?

欢马劈雪     最近更新时间:2020-01-02 10:19:05

439
提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
以下程序打印什么?

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 
   */

}