摘要: #include <stdio.h> int bh(int s,int a) { while(s) { if(s%10==a) return 1; s=s/10; } return 0; } main() { int sum=0,a,b,c; for(a=1;a<=1000;a++) if(bh(a 阅读全文
posted @ 2022-01-07 15:44 myrj 阅读(165) 评论(0) 推荐(0) 编辑