[백준 1152] 단어의 개수 (C#, C++) - soo:bak
작성일 :
문제 링크
설명
주어진 문자열에서 단어의 개수를 세는 문제입니다.
문자열을 공백으로 구분하여 단어의 개수를 센 후 출력합니다.
Code
[ C# ]
1
2
3
4
5
6
7
8
9
10
11
namespace Solution {
class Program {
static void Main(string[] args) {
var cntWord = Console.ReadLine()!.Split(' ', StringSplitOptions.RemoveEmptyEntries).Length;
Console.WriteLine(cntWord);
}
}
}
[ C++ ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int cntWord = 0;
while (true) {
string word; cin >> word;
if (cin.eof()) break ;
cntWord++;
}
cout << cntWord << "\n";
return 0;
}