0
已解决
薛新奥
新手光能
新手光能
2711 多少个空格
题目描述 Description
输入一行字符串,请你找到这个字符串中有多少个空格。
输入描述 Input Description
一行:输入字符串
输出描述 Output Description
一个数字:字符串中的空格数
样例输入 Sample Input
Hello miao miao
样例输出 Sample Output
2
#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
int main()
{
char a[2000];
gets(a);
int x;
x=strlen(" ");
cout<<x;
return 0;
}