실행 실패 (제출 코드 컴파일 에러)
Main.cpp: In function ‘void draw_mid_square(int)’: Main.cpp:54:27: error: ‘N’ was not declared in this scope 54 | for(; i < N/9; ++i) | ^ Main.cpp:60:29: error: ‘N’ was not declared in this scope 60 | for(i=0; i< N/9; ++i) | ^ Main.cpp:66:30: error: ‘N’ was not declared in this scope 66 | for(i=0; i < N/9; ++i) | ^ Main.cpp: In function ‘void draw_square(int)’: Main.cpp:87:25: error: ‘N’ was not declared in this scope 87 | for(; i<N; ++i)cout << "*"; | ^ Main.cpp:89:29: error: ‘N’ was not declared in this scope 89 | for(i=0; i< N / 3; ++i)cout << "* *"; | ^ Main.cpp:91:28: error: ‘N’ was not declared in this scope 91 | for(i=0; i<N; ++i)cout << "*"; | ^
정답 개수:
-
틀린 개수:
-
실행 실패 개수:
-
반례를 발견하지 못했습니다.