摘要: #include <iostream> using namespace std; const int N=1e7+10; int a[N]; int n; bool isGoodNum(int x) { int count=0; while(x>0) { a[++count]=x%10; x=x/1 阅读全文
posted @ 2024-10-21 20:37 Emila 阅读(18) 评论(0) 推荐(0)