#include "stdio.h" void main() { int c,kg,hhf,zbf; kg=hhf=zbf=0; while((c=getchar())!=EOF)//EOF資料結束, { if(c==' ') { kg+=1; } if(c=='\n') { hhf+=1; } if(c=='\t') { zbf+=1; } } //按Ctil+c結束輸入 printf("空格數:%d\n換行符數:%d\n制表符數:%d",kg,hhf,zbf); }
#include "stdio.h" void main() { int c,kg,hhf,zbf; kg=hhf=zbf=0; while((c=getchar())!=EOF)//EOF資料結束, { if(c==' ') { kg+=1; } if(c=='\n') { hhf+=1; } if(c=='\t') { zbf+=1; } } //按Ctil+c結束輸入 printf("空格數:%d\n換行符數:%d\n制表符數:%d",kg,hhf,zbf); }
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。