我的程序:
while (i<=1000)
{
sum+=i;
i+=2;
}
cout<<"1000内的偶数和为:"<<sum<<endl;
return 0;
}
18. 运行结果:
19.心得体会:
和吃糖豆一样
20. 知识点总结:
我们应该将奇数巧妙地躲避开。