Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
330205 王冠程 【C2-T 】统计4位的回文数 C++ 通过 100 0 MS 236 KB 219 2025-07-09 13:05:31

Tests(1/1):


#include<iostream> using namespace std; int main(){ int count=0; for(int a=1;a<10;a++){ for(int b=0;b<10;b++){ cout<<a<<b<<b<<a<<" "; count++; if(count%11==0) cout<<endl; } } return 0; }


测评信息: