标签:class std style 统计 prime while eof primer print
1.设计一个程序,统计从输入到文件结尾为止的字符数。
#include<stdio.h> int main(void){ int ch; int i; i=0; while((ch = getchar())!=EOF){ if(ch != ‘\n‘) i++; } printf("char for count %d",i); return 0; }
标签:class std style 统计 prime while eof primer print
原文地址:http://www.cnblogs.com/zihai/p/6826873.html