Submission #18581

# Submission time Handle Problem Language Result Execution time Memory
18581 2016-02-09T15:26:42 Z jjhstop 뚊 (kriii3_EE) C++
Compilation error
0 ms 0 KB
#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");
}

Compilation message

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