2017年2月19日

uva10340

摘要: #include #include #include #include using namespace std; char str1[101],str2[101]; int set1[26],set2[26]; int main() { while(cin>>str1>>str2) { memset(set1,0,sizeof(set1)); memset... 阅读全文

posted @ 2017-02-19 12:20 发牌员 阅读(131) 评论(0) 推荐(0)

uva201

摘要: #include <stdio.h>#include <stdlib.h>#include <string.h>int main(){ int n,m,t=0; int h[10][10],v[10][10]; while(~scanf("%d%d",&n,&m)) { getchar(); mem 阅读全文

posted @ 2017-02-19 11:55 发牌员 阅读(208) 评论(0) 推荐(0)

uva1587

摘要: #include <stdio.h>#include <stdlib.h> int main(){ int a[8][4],x=0,flag=0,b[20],y=0,z=0,c[20]; while(~scanf("%d%d",&a[x++][0],&a[x][1])) { if(a[0][0]== 阅读全文

posted @ 2017-02-19 11:35 发牌员 阅读(168) 评论(0) 推荐(0)

uva227

摘要: #include <stdio.h>#include <stdlib.h> int main(){ char a[6][7]; int flag=0; while(gets(a[0])) { if(a[0][0]=='Z') break; flag++; for(int i=1; i<5; i++) 阅读全文

posted @ 2017-02-19 11:33 发牌员 阅读(192) 评论(0) 推荐(0)

UVA232

摘要: #include #include #include int main() { char a[12][12],d[110][12]; int b[12][12]; int r,c,con=0; while(~scanf("%d",&r)) { memset(b,0,sizeof(b)); memset(d,0,size... 阅读全文

posted @ 2017-02-19 11:21 发牌员 阅读(132) 评论(0) 推荐(0)

导航