摘要:
#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, (( 阅读全文
摘要:
首先Python与其他主流编程语言有两个直观的不同点:1、变量命名时不需要指出变量类型。2、每个语句的结尾不再需要';'。这个两地方在编程过程中确实能节省很多敲击次数,不过由于本人目前只写过长度为几十行代码,不知道在编写大型程序时,这种方式会有多大的优点或者存在哪些不便之处。 @要运行Python程 阅读全文
摘要:
#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; 阅读全文
摘要:
#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); 阅读全文
摘要:
#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 阅读全文
摘要:
#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+ 阅读全文
摘要:
#include <stdio.h> #include <string.h> #include <stdbool.h> int main() { char line1[110]; char line2[110]; char line3[210]; scanf("%s", line1); scanf( 阅读全文
摘要:
#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 阅读全文
摘要:
#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; } 阅读全文
摘要:
#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 阅读全文