2019年11月6日
摘要: #include <stdio.h> #include<string.h> #include <stdbool.h> #define MAXSIZE 105 int main() { char str[MAXSIZE]; scanf("%s", str); int length=strlen(str 阅读全文
posted @ 2019-11-06 10:27 ComMario 阅读(102) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main() { int n; int sum1=0, sum2=0, sum3=0; int x, y, z; scanf("%d", &n); int i; for(i=0; i<n; ++i) { scanf("%d %d %d", &x, &y, 阅读全文
posted @ 2019-11-06 10:27 ComMario 阅读(123) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main() { int n; int sum1=0, sum2=0, sum3=0; int x, y, z; scanf("%d", &n); int i; for(i=0; i<n; ++i) { scanf("%d %d %d", &x, &y, 阅读全文
posted @ 2019-11-06 10:26 ComMario 阅读(165) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main() { int dig; int flag=0; scanf("%d", &dig); if(dig%4==0) flag=1; else if(dig%7==0) flag=1; else if(dig%44==0) flag=1; else 阅读全文
posted @ 2019-11-06 10:25 ComMario 阅读(129) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> int main() { char hel[6]="hello"; char str[120]; memset(str, 0, sizeof(str)); scanf("%s", str); int length=strl 阅读全文
posted @ 2019-11-06 10:24 ComMario 阅读(126) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> int main() { char str[150]; int arr[35]; memset(str, 0, sizeof(str)); memset(arr, 0, sizeof(str)); scanf("%s", 阅读全文
posted @ 2019-11-06 10:23 ComMario 阅读(109) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main() { int n; int a1,a2; int min=0; int cap=0; scanf("%d",&n); while(n>0) { scanf("%d %d",&a1,&a2); cap-=a1; cap+=a2; if(min< 阅读全文
posted @ 2019-11-06 10:22 ComMario 阅读(160) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <string> using namespace std; int main() { string stones; int n,count; while(cin>>n>>stones) { count=0; for(int i=0; i<st 阅读全文
posted @ 2019-11-06 10:21 ComMario 阅读(124) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <algorithm> using namespace std; int main() { int groups[100009], num[5]; int n, sum; while(cin>>n) { sum=num[1]=num[2]=n 阅读全文
posted @ 2019-11-06 10:21 ComMario 阅读(168) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #include<stdlib.h> int main() { int i, j; int temp; int t_i, t_j; int ans; for(i=1; i<=5; ++i) for(j=1; j<=5; ++j) { scanf("%d",&tem 阅读全文
posted @ 2019-11-06 10:20 ComMario 阅读(98) 评论(0) 推荐(0) 编辑