PAT (Basic Level) Practice (中文) 1019 数字黑洞
摘要:
1 #include<stdio.h> 2 #include<string.h> 3 #include<algorithm> 4 using namespace std; 5 char n[5]; 6 bool cmp(char a,char b){//降序 7 return a>b; 8 } 9 阅读全文
posted @ 2020-04-15 11:17 chenxi16 阅读(132) 评论(0) 推荐(0) 编辑