1/7 [C언어] 백준 23292번 - 코딩 바이오리듬
https://www.acmicpc.net/problem/23292 23292번: 코딩 바이오리듬 바이오리듬(biorhythm)이라는 이론을 들어본 적 있는가? 바이오리듬은 인체에 신체,감성,지성의 세가지 주기가 생년월일의 입력에 따라 어떤 패턴으로 나타나고, 이 패턴의 조합에 따라 능력이나 www.acmicpc.net #define _CRT_SECURE_NO_WARNINGS #include int main() { char bir[9], input[9], out[9]; int max = 0, testcase, answer; int i, j; scanf("%s", bir); //생일을 bir 배열에 바로 저장해줌. scanf("%d", &testcase); //testcase라고 썼지만 날짜 몇번 입력할건..
2022. 1. 7.
1/6 [C] 백준 3076번 - 상근이의 체스판
https://www.acmicpc.net/problem/3076 3076번: 상근이의 체스판 출력은 R * A행 C * B열로 이루어져 있어야 하며, 문제에서 설명한 상근이의 체스판을 출력한다. www.acmicpc.net #define _CRT_SECURE_NO_WARNINGS #include int main() { int r, a, c, b; int i,j,k,l; int arr[10][10] = { 0 }; scanf("%d %d", &r, &c); scanf("%d %d", &a, &b); for (i = 0; i < r; i++) { for (j = 0; j < a; j++) { for (k = 0; k < c; k++) { for (l = 0; l < b; l++) { if ((i + k) ..
2022. 1. 6.