4 条题解
- 1
信息
- ID
- 93
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- 1
- 标签
- 递交数
- 144
- 已通过
- 98
- 上传者
#include <bits/stdc++.h>
using namespace std;
int main()
{
int a, b, c, d, x, n;
for(n=32; n<=99; n++)
{
x = n * n;
a = x / 1000;
b = x / 100 % 10;
c = x % 100 / 10;
d = x % 10;
if((a == b) && (c == d))
{
cout << x;//答案:7744
}
}
return 0;
}//已AC
#include <bits/stdc++.h>
using namespace std;
int main()
{
cout << 7744;
return 0;
}
总的来说,你的代码输出的是7744,不如直接输出。
啊对对对
#include <bits/stdc++.h>
using namespace std;
int main()
{
cout << "7744";
return 0;
}
#include <iostream> using namespace std; int main() { cout << 7744; return 0; }