洛谷 P5015 标题统计

第一道题很简单,标签:字符串、模拟。

只需要一个判断去除空格就对了:

if(a[i]!=' ' && a[i]!='\n') v++;

code:

#include
#include
#include
#include
using namespace std;
int main()
{
    string a;
    getline(cin,a);
    int v=0;
    for(int i=0;i

转载于:https://www.cnblogs.com/yihengblog/p/10123846.html

你可能感兴趣的:(洛谷 P5015 标题统计)