chenxi16

导航

2020年4月16日 #

PAT (Basic Level) Practice (中文) 1024 科学计数法

摘要: 1 #include<stdio.h> 2 #include<string.h> 3 #include<algorithm> 4 using namespace std; 5 const int maxn = 100000; 6 char a[maxn]; 7 int main(){ 8 int e 阅读全文

posted @ 2020-04-16 15:51 chenxi16 阅读(168) 评论(0) 推荐(0) 编辑

PAT (Basic Level) Practice (中文)1023 组个最小数

摘要: 1 #include<stdio.h> 2 #include<algorithm> 3 #include<string.h> 4 using namespace std; 5 const int maxn = 50; 6 int main(){ 7 int a[10],count=0,value; 阅读全文

posted @ 2020-04-16 15:06 chenxi16 阅读(98) 评论(0) 推荐(0) 编辑

PAT (Basic Level) Practice (中文) 1020 月饼

摘要: 1 #include<stdio.h> 2 #include<algorithm> 3 using namespace std; 4 const int MAXN=1001; 5 struct kind{ 6 double num,price,p_price; 7 }; 8 int d,n; 9 s 阅读全文

posted @ 2020-04-16 10:51 chenxi16 阅读(139) 评论(0) 推荐(0) 编辑