Hackerrank | Compare the Triplets
6999 ワード
link
https://www.hackerrank.com/challenges/compare-the-triplets/problem
problem
配列に格納され、同じインデックス内のa配列とb配列を簡単に比較します.
code
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
int main(){
int a[3] = {0,}; //Alice
int b[3] = {0,}; //Bob
int anum = 0, bnum = 0; //비교결과 저장
for (int i=0; i<3; i++){ // Alice의 포인트 받아옴
sacnf("%d", &a[i]);
}
for (int i=0; i<3; i++){ // Bob의 포인트 받아옴
scanf("%d", &b[i]);
}
for (int i=0; i<3; i++){ // 둘 비교하고 비교결과 저장
if(a[i] > b[i])
anum++;
else if (b[i] > a[i])
bnum++;
}
printf("%d %d", anum, bnum);
}![](https://media.vlpt.us/images/2rlo/post/48922138-cdf7-491e-bcd6-250b1a89ec07/image.png)
result
Reference
この問題について(Hackerrank | Compare the Triplets), 我々は、より多くの情報をここで見つけました https://velog.io/@2rlo/Hackerrank-Compare-the-Tripletsテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol