上一页 1 2 3 4 5 6 ··· 8 下一页
2019年11月11日
摘要: #include <stdio.h> #include <math.h> int main() { int a, b; scanf("%d %d", &a, &b); int temp; if(a<b) { temp=a; a=b; b=temp; } printf("%d %d\n", b, (( 阅读全文
posted @ 2019-11-11 16:21 ComMario 阅读(82) 评论(0) 推荐(0) 编辑
2019年11月8日
摘要: 首先Python与其他主流编程语言有两个直观的不同点:1、变量命名时不需要指出变量类型。2、每个语句的结尾不再需要';'。这个两地方在编程过程中确实能节省很多敲击次数,不过由于本人目前只写过长度为几十行代码,不知道在编写大型程序时,这种方式会有多大的优点或者存在哪些不便之处。 @要运行Python程 阅读全文
posted @ 2019-11-08 09:58 ComMario 阅读(128) 评论(0) 推荐(0) 编辑
2019年11月7日
摘要: #include <stdio.h> int main() { char line[30]; int n; scanf("%d", &n); getchar(); int ans=0; while(n--) { scanf("%s", line); if(line[0]=='T') ans+=4; 阅读全文
posted @ 2019-11-07 12:15 ComMario 阅读(144) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> # define MaxSize 10010 char line_0[MaxSize]; char line_1[MaxSize]; int main() { int k; int n; scanf("%d", &k); 阅读全文
posted @ 2019-11-07 11:56 ComMario 阅读(170) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> int num[1024]; int main() { int k; int n; int temp; scanf("%d", &k); while(k--) { memset(num, 0, sizeof(int)*10 阅读全文
posted @ 2019-11-07 11:55 ComMario 阅读(252) 评论(0) 推荐(0) 编辑
2019年11月6日
摘要: #include <stdio.h> int main() { int n, m; long long Count=0; scanf("%d%d", &n, &m); int cur, pre=1; while(m--) { scanf("%d", &cur); if(cur>pre) Count+ 阅读全文
posted @ 2019-11-06 10:59 ComMario 阅读(142) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> #include <stdbool.h> int main() { char line1[110]; char line2[110]; char line3[210]; scanf("%s", line1); scanf( 阅读全文
posted @ 2019-11-06 10:58 ComMario 阅读(148) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <math.h> #include <stdbool.h> int IsPrime(int n) { if(n==1) return 1; if(n==2) return 1; if(n%2==0) return 0; int end=sqrt 阅读全文
posted @ 2019-11-06 10:57 ComMario 阅读(127) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main() { int n; int k; scanf("%d%d", &n, &k); while(k--) { if((n%10)!=0) --n; else n/=10; } printf("%d\n", n); return 0; } 阅读全文
posted @ 2019-11-06 10:56 ComMario 阅读(130) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> #include <stdbool.h> int main() { int n; scanf("%d", &n); char line[120]; scanf("%s", line); int alp[30]; int C 阅读全文
posted @ 2019-11-06 10:56 ComMario 阅读(118) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页