c语言编程之求输入字符串的个数

c语言编程之求输入字符串的个数

#include 
#include 
int main()
{

    int n=0;
    printf("请输入字符串:\n");

    while(getchar()!='\n')
    {

        n++;
    }
    printf("输入的字符串个数为:%d",n);
    return 0;
}

你可能感兴趣的:(c语言编程)