好吧,刚做完基础测试题:
2、 编写程序计算12+22+32+....+1002的和.
感觉没多大压力,就扩展了下:
编写程序计算12+22-32+42-52....+982-992+1002的结果
class test10
{
public static void main(String[]args)//主函数
{
jieguo();//调用求和函数
}
static void jieguo()//求和函数
{
int a=12,he;
he=a;//he用来储存运算的结果
for(int x=1;x<100;x++)//for循环遍历1-100,用来对a进行加10操作
{
a+=10;
if(x%2==0)//定义条件
{
he=he-a;
}
else if(x%2!=0)
{
he=he+a;
}
}
System.out.println("结果:"+he);
}
}
|
|