我对以下代码有疑问:
#include <iostream>
#include <ctime>
int main(){
unsigned long int blob;
srand(time(0));
for(int counter = 0; counter <= 100; counter++) {
blob = rand() % 4000000000UL ;
std::cout << blob << std::endl;
}//for
system("pause");
return 0;
} //main
在 codepad.org 上,它输出较大的值,例如
378332591
1798482639
294846778
1727237195
62560192
1257661042
但在 Windows 7 64 位上,它只输出小值(在 VS11 和 Code::Blocks 上测试编译)
10989
13493
13169
18581
17972
29
在此先感谢您帮助 C++ 学习者 ;)