运行下面这段程序,将会输出3600000000()?
#include <bits/stdc++.h>
using namespace std;
int main() {
int n = 60000;
int m = n * n;
cout << m;
return 0;
}
发表评论