请问s1e6课后题舍罕王的这段代码有什么问题,得出的结果和小甲鱼的不一样
include <stdio.h>#include <math.h>
int main()
{
unsigned long long sum = 0;
unsigned long long temp;
unsigned long long weight;
int i;
for (i =0;i<64;i++)
{
temp = pow(2,i);
sum = sum + temp;
}
weight = sum/25000;
printf("%11u\n",sum);
printf("%11u\n",weight);
return 0;
}
是llu不是11u wp231957 发表于 2021-4-16 22:35
是llu不是11u
解决了,十分感谢,不过小甲鱼的作业答案上那真的很像1啊hhh。 surgeMing 发表于 2021-4-16 22:39
解决了,十分感谢,不过小甲鱼的作业答案上那真的很像1啊hhh。
是unsigned long long的缩写
wp231957 发表于 2021-4-16 22:41
是unsigned long long的缩写
哈哈哈哈哈哈谢谢谢谢,我也是写成11死活没做出来
页:
[1]