Time Limit: 1s
Memory Limit: 128MB
전처리기가 하는 것처럼 C 코드내 사용된 모든 코멘트를 제거하는 프로그램을 작성하시오. (단, 문자열에 포함된 코멘트는 제거하지 않도록 주의하고 코맨트내 엔터는 남겨야 함)
EOF로 끝나는 문자열. 각 라인의 길이는 1000을 넘지 않는다.
코멘드만 제거된 C코드
#include <stdio.h> /* comment1 */ /* comment2 comment2 */ int main() { /* comment3 */ printf("The comment /* comment4 */ of a string survives \n"); /* "comment5" */ return 0; }
#include <stdio.h> int main() { printf("The comment /* comment4 */ of a string survives \n"); return 0; }