WithCS
Toggle navigation
Practice
Status
Discuss
Challenge
Login
Register
Discuss
4256
Output limit exceed 가 뜨네요 ㅠ
Output limit exceed 가 뜨네요 ㅠ
unsung107
Reply 7 years 32 weeks ago
#include <stdio.h> int main() { int c; c = getchar(); while (c != EOF) { while (c != ' ') { putchar(c); c = getchar(); }; while (c == ' ') { c = getchar(); }; printf(" "); }; return 0; } 컴파일해서 해보면 잘되는것같은데 output 오류가 떠요
Status
Problem
withcs1
Reply 7 years 32 weeks ago
eof를 받으면 프로그램이 종료되야합니다.