PAT乙级1046 划拳 (15 分)

Posted 辉小歌

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PAT乙级1046 划拳 (15 分)相关的知识,希望对你有一定的参考价值。

在这里插入图片描述
题目地址

#include<cstdio>
#include<iostream>
using namespace std;
int s1,s2;
int main(void)
{
	int n; cin>>n;
	while(n--)
	{
		int a,b,c,d; cin>>a>>b>>c>>d;
		int t=a+c;
		if(t==b&&t==d) continue;
		else if(t==b) s1++;
		else if(t==d) s2++;
	}
	cout<<s2<<" "<<s1<<endl;
	return 0;
} 

以上是关于PAT乙级1046 划拳 (15 分)的主要内容,如果未能解决你的问题,请参考以下文章

PAT-乙级-1046 划拳

[PAT乙级]1046 划拳

PAT (Basic Level) Practice (中文)1046 划拳 (15 分)

PAT 1046. 划拳(15)

1046 划拳——15分

1046 划拳(15 分)