摘要: #试题A:门牌制作 参考代码 #include<bits/stdc++.h> using namespace std; int a[10]; void add(int x){ while(x){ a[x%10]++; x/=10; } } int main(){ for(int i=1;i<=202 阅读全文
posted @ 2022-02-12 16:25 何太狼 阅读(99) 评论(0) 推荐(1) 编辑