开发平台(Platform): (Ex: VC++, GCC, Linux, ...)
Codeblock10.5 C语言
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
None
问题(Question):
算字数无反应
喂入的资料(Input):
123abcd
预期的正确结果(Expected Output):
7
错误结果(Wrong Output):
无反应
程式码(Code):(请善用置底文网页, 记得排版)
#include <stdio.h>
main( )
{
long nc;
nc=0;
while (getchar()!=EOF);
++nc;
printf("%ld characters\n",nc);
}
补充说明(Supplement):
有爬过文 有类似的 有Google过
http://www.programmer-club.com.tw/ShowSameTitleN/c/14550.html
有人使用dev-c++执行也不行
初学C不好意思 请各位大大帮忙解答 谢谢