baekjoon 3003

ν˜Έμ§„Β·2023λ…„ 8μ›” 15일
0

baekjoon

λͺ©λ‘ 보기
37/37


Idea

πŸ₯¨


Code

#define _CRT_SECURE_NO_WARNINGS
#define LEN 6
#include <stdio.h>

int main(void) {
	int chess[LEN] = { 1, 1, 2, 2, 2, 8 };
	int arr[LEN];

	for (int i = 0; i < LEN; i++) {
		scanf("%d", &arr[i]);

		arr[i] = chess[i] - arr[i];
	}

	for (int i = 0; i < LEN; i++) {
		printf("%d ", arr[i]);
	}

	return 0;
}
profile
πŸ’­(q‒̀ᴗ-)✧

0개의 λŒ“κΈ€