摘要: 保守数 源代码 #include <bits/stdc++.h> using namespace std;int main(){ for(int i=0;i<100000;i++){ int t=i; int count=0; while(t!=0){ t/=10; count++;//计算i是几位 阅读全文
posted @ 2023-05-25 16:57 晨观夕 阅读(47) 评论(0) 推荐(0)