C言語のunsigned short intとunsigned long intの足し算
gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0を利用していたときに起きた出来事です。
型変換を明示してやらないと変な結果になりました。
失敗するコード
#include <stdio.h> //printf(), perror()
int main(int argc, char** argv){
unsigned long int x=0;
printf("%lu\n",x);
for(int i=0;i<1000000;i++){
unsigned short int y=50000;
if(i<10){
printf("%d %lu\n",i,x);
}
x+=y*y;
}
printf("%lu\n",x);
}
#include <stdio.h> //printf(), perror()
int main(int argc, char** argv){
unsigned long int x=0;
printf("%lu\n",x);
for(int i=0;i<1000000;i++){
unsigned short int y=50000;
if(i<10){
printf("%d %lu\n",i,x);
}
x+=y*y;
}
printf("%lu\n",x);
}
結果は
0
0 0
1 18446744071914584320
2 18446744070119617024
3 18446744068324649728
4 18446744066529682432
5 18446744064734715136
6 18446744062939747840
7 18446744061144780544
8 18446744059349813248
9 18446744057554845952
18444949106413551616
成功するコード
#include <stdio.h> //printf(), perror()
int main(int argc, char** argv){
unsigned long int x=0;
printf("%lu\n",x);
for(int i=0;i<1000000;i++){
unsigned short int y=50000;
if(i<10){
printf("%d %lu\n",i,x);
}
x+=(unsigned long int)y*y;
}
printf("%lu\n",x);
}
#include <stdio.h> //printf(), perror()
int main(int argc, char** argv){
unsigned long int x=0;
printf("%lu\n",x);
for(int i=0;i<1000000;i++){
unsigned short int y=50000;
if(i<10){
printf("%d %lu\n",i,x);
}
x+=(unsigned long int)y*y;
}
printf("%lu\n",x);
}
結果は
0
0 0
1 2500000000
2 5000000000
3 7500000000
4 10000000000
5 12500000000
6 15000000000
7 17500000000
8 20000000000
9 22500000000
2500000000000000
自動型変換に頼ってばかりいて落とし穴にハマりました。
Author And Source
この問題について(C言語のunsigned short intとunsigned long intの足し算), 我々は、より多くの情報をここで見つけました https://qiita.com/cozy16/items/eb692c60e44fe652e5c9著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .