티스토리 뷰

algorithm

[c++] 가위바위보

tonirr 2020. 12. 5. 18:03
  • 가위바위보
#include <iostream>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main() {
	//freopen("input.txt", "rt", stdin);
	int n, i, a[101], b[101];
	scanf("%d", &n);
	for(i=1; i<=n; i++){
		scanf("%d", &a[i]);	
	}
	for(i=1; i<=n; i++){
		scanf("%d", &b[i]);
	}
	for(i=1; i<=n; i++){
		if(a[i]==b[i]) printf("D\n");
		else if(a[i]==1 && b[i]==3) printf("A\n");
		else if(a[i]==2 && b[i]==1) printf("A\n");
		else if(a[i]==3 && b[i]==2) printf("A\n");
		else printf("B\n");
	}
	return 0;
}

'algorithm' 카테고리의 다른 글

[c++] 연속부분증가수열, Jolly jumpers  (0) 2020.12.07
[c++] 카드게임, 온도의 최대값  (0) 2020.12.06
[c++] 층간소음  (0) 2020.12.04
[c++] 아나그램, 선생님 퀴즈  (0) 2020.12.03
[c++] 뒤집은 소수, 소수의 개수  (0) 2020.12.01
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2025/02   »
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28
글 보관함