왜 계속 프리젠테이션 에러가 발생하는지 모

khm1136 Reply 9 years 34 weeks ago
#include<stdio.h> int main() { int c; while((c = getchar()) != EOF) { if ((c >= 48 && c <= 57) || (c >= 65 && c <= 90) || (c >= 97 && c <= 122)) putchar(c); else printf("\n"); } return 0; } 여기서 무엇이 틀려서 프리젠테이션 에러가 발생하는지 모르겠어요
onacloud Reply 9 years 34 weeks ago
출력시 단어들 사이에 빈 라인이 있으면 안됩니다.