其他分享
首页 > 其他分享> > 字符串练习

字符串练习

作者:互联网

s'daa 

 

#include <stdio.h>
#include <string.h>
#include <ctype.h>
char s[10001];
int main()
{
    while(scanf("%s",s)!=EOF);
    printf("%d",strlen(s));
    return 0;
}

可以使用ctrl+Z然后回车强制结束程序;

【关于while(cin>>str)无法结束的问题】:http://community.csdn.net/Expert/topic/5269/5269857.xml?temp=.1492426

或者

标签:1492426,EOF,Expert,ctrl,练习,while,字符串,include
来源: https://www.cnblogs.com/HiRa-AB/p/14425348.html