> 其他 >
求满足1+2+3...+n>500的最小的自然数n.用2种算法表示出来,另外加上程序框图
人气:481 ℃ 时间:2020-02-15 08:47:18
解答
(1)
retrun n=(int)((sqrt(4001)+1)/2);
(2)
int func()
{
int nSum = 0;
int i = 0;
while(nSum < 500)
{
nSum += i;
i++;
}
return i;
}
推荐
猜你喜欢
© 2024 79432.Com All Rights Reserved.
电脑版|手机版