제출 #18581

#제출 시각아이디문제언어결과실행 시간메모리
18581jjhstop뚊 (kriii3_EE)C++98
컴파일 에러
0 ms0 KiB
#include<stdio.h.> char src[10][10]; char tgt[10][20]; int main() { int N, M; freopen("input.txt", "r", stdin); scanf("%d %d ", &N, &M); for (int i = 0; i < N; i++) { for (int j = 0; j < M; j++) { scanf("%c ", &src[i][j]); } } for (int i = 0; i < N; i++) { for (int j = 0; j < 2*M; j++) { scanf("%c", &tgt[i][j]); if (src[i][j / 2] != tgt[i][j]) { printf("Not Eyfa"); return 0; } } } printf("Eyfa"); }

컴파일 시 표준 에러 (stderr) 메시지

ee.cpp:1:19: fatal error: stdio.h.: 그런 파일이나 디렉터리가 없습니다
 #include<stdio.h.>
                   ^
compilation terminated.