现给出两人的交锋记录,请统计双方的胜、平、负次数,并且给出双方分别出什么手势的胜算最大。
输入格式:
输入第1行给出正整数N(<=10),即双方交锋的次数。随后N行,每行给出一次交锋的信息,即甲、乙双方同时给出的的手势。C代表“锤子”、J代表“剪刀”、B代表“布”,第1个字母代表甲方,第2个代表乙方,中间有1个空格。
输出格式:
输出第1、2行分别给出甲、乙的胜、平、负次数,数字间以1个空格分隔。第3行给出两个字母,分别代表甲、乙获胜次数最多的手势,中间有1个空格。如果解不唯一,则输出按字母序最小的解。
输入样例:
10
C J
J B
C B
B B
B C
C C
C B
J B
B C
J J
输出样例:
5 3 2
2 3 5
B B
这次写的不是很精简
#include<stdio.h>
#include<string.h>
#include<math.h>
#include<stdlib.h>
int main(){
int n;
int J1=,C1=,B1=;
int J2=,C2=,B2=;
char temp,temp2;
int a1=,a2=,a3=;
int b1=,b2=,b3=;
int k1=,k2=;
scanf("%d",&n);
getchar();
for(int i=;i<n;i++){
scanf("%c %c",&temp,&temp2);
getchar();
if(temp=='J'&&temp2=='B'){
a1++;
b3++;
J1++;
}else if(temp=='J'&&temp2=='C'){
a3++;
b1++;
C2++;
}else if(temp=='J'&&temp2=='J'){
a2++;
b2++;
}else if(temp=='C'&&temp2=='J'){
a1++;
b3++;
C1++;
}else if(temp=='C'&&temp2=='B'){
a3++;
b1++;
B2++;
}else if(temp=='C'&&temp2=='C'){
a2++;
b2++;
}else if(temp=='B'&&temp2=='J'){
a3++;
b1++;
J2++;
}else if(temp=='B'&&temp2=='C'){
a1++;
b3++;
B1++;
}else if(temp=='B'&&temp2=='B'){
a2++;
b2++;
}
}
printf("%d %d %d\n",a1,a2,a3);
printf("%d %d %d\n",b1,b2,b3);
if(B1>=C1&&B1>=J1)
printf("B ");
else if(C1>=J1)
printf("C ");
else
printf("J ");
if(B2>=C2&&B2>=J2)
printf("B");
else if(C2>=J2)
printf("C");
else
printf("J"); }