摘要: 1.使用数组存储每一位数; 2.依次遍历95859到100000的所有数; 3.当满足条件后输出目标数; #include<iostream> using namespace std; int main(){ int T=95860; for(;T<100000;T++){ if(T/10000== 阅读全文
posted @ 2023-04-25 15:34 The-rich 阅读(20) 评论(0) 推荐(0)