Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
5906 张博涵 对称平方数1 C++ 解答错误 0 MS 240 KB 219 2023-01-18 16:57:28

Tests(0/1):


#include<bits/stdc++.h> using namespace std; int main() { int i; for(i=1;i<=256;i++){ int n=i*i; int m=0; while(n>0){ m=m*10+n%10; n=n/10; } if(m==i*i) { cout<<i<<" "; } } return 0; }


测评信息: