*문제 중 일부 문자가 표현이 안되어 문제 링크를 첨부합니다.
https://www.acmicpc.net/problem/25314
#include <stdio.h>
int main() {
int n, re;
scanf("%d", &n);
re = n / 4;
for (int i = 0; i < re; i++) {
printf("long ");
}
printf("int");
return 0;
}
'c > 백준' 카테고리의 다른 글
11021. A+B - 7 (0) | 2023.03.12 |
---|---|
15552. 빠른 A+B (0) | 2023.03.12 |
25304. 영수증 (0) | 2023.03.12 |
8393. 합 (0) | 2023.03.12 |
10950. A+B - 3 (0) | 2023.03.12 |