当前位置:首页>维修大全>综合>

怎样编写代码

怎样编写代码

更新时间:2023-09-28 02:23:16

怎样编写代码

classDemo

{

publicstaticvoidmain(String[]args)

{

intx=1;

intnum=0;

while(true)

{

num+=x;

x++;

if(x>=1000)

{

break;

}

}

System.out.println("1-1000之和为:"+num);

}

}

更多栏目