[boj](b 2)1152単語の個数
完全ナビゲーション⌝getline(cin,str)
質問する
質問する
に答える
問題自体は完全探索なので、スペースを1つ数えるだけでいいので難しくありません.
ただし、スペースを含む文字列を受信するためcinを直接入力するのではなく、getline(cin,str)を入力する必要があります.
に注意
文字列の先頭と末尾にスペースがある場合を考慮
コード#コード# #include <iostream>
#include <algorithm>
#include <string>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
string str;
getline(cin, str);
int cnt = 1;
if(str[0] == ' '){
for (int i = 1; i < str.length(); i++)
{
if (str[i] == ' ')
cnt++;
}
}
else{
for (int i = 0; i < str.length(); i++)
{
if (str[i] == ' ')
cnt++;
}
}
if(str[str.length()-1] == ' ') cnt--;
cout << cnt << "\n";
return 0;
}
Reference
この問題について([boj](b 2)1152単語の個数), 我々は、より多くの情報をここで見つけました
https://velog.io/@peanut_/boj-b2-단어의-개수
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
問題自体は完全探索なので、スペースを1つ数えるだけでいいので難しくありません.
ただし、スペースを含む文字列を受信するためcinを直接入力するのではなく、getline(cin,str)を入力する必要があります.
に注意
文字列の先頭と末尾にスペースがある場合を考慮
コード#コード# #include <iostream>
#include <algorithm>
#include <string>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
string str;
getline(cin, str);
int cnt = 1;
if(str[0] == ' '){
for (int i = 1; i < str.length(); i++)
{
if (str[i] == ' ')
cnt++;
}
}
else{
for (int i = 0; i < str.length(); i++)
{
if (str[i] == ' ')
cnt++;
}
}
if(str[str.length()-1] == ' ') cnt--;
cout << cnt << "\n";
return 0;
}
Reference
この問題について([boj](b 2)1152単語の個数), 我々は、より多くの情報をここで見つけました
https://velog.io/@peanut_/boj-b2-단어의-개수
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
string str;
getline(cin, str);
int cnt = 1;
if(str[0] == ' '){
for (int i = 1; i < str.length(); i++)
{
if (str[i] == ' ')
cnt++;
}
}
else{
for (int i = 0; i < str.length(); i++)
{
if (str[i] == ' ')
cnt++;
}
}
if(str[str.length()-1] == ' ') cnt--;
cout << cnt << "\n";
return 0;
}
Reference
この問題について([boj](b 2)1152単語の個数), 我々は、より多くの情報をここで見つけました https://velog.io/@peanut_/boj-b2-단어의-개수テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol