记录编号 592048 评测结果 AAAAAAAAAAAAAAAAAAAA
题目名称 [NOIP 2018PJ]标题统计 最终得分 100
用户昵称 Gravatarfather 是否通过 通过
代码语言 C++ 运行时间 0.059 s
提交时间 2024-07-21 10:15:05 内存使用 3.36 MiB
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int main()
{
freopen("title.in","r",stdin);
freopen("title.out","w",stdout);
string s;
int a=0;
getline(cin,s);
for(int i=0;i<=s.length();i++)
{
	if(s[i]!=' ')
	a++;
}
cout<<a-1;
return 0;
}