-
Notifications
You must be signed in to change notification settings - Fork 0
/
1152_단어의개수.cpp
64 lines (64 loc) · 973 Bytes
/
1152_단어의개수.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
//#include<iostream>
//#include<string>
//using namespace std;
//
//int solution(string str)
//{
// int start = 0;
// int j;
// int count = 0;
// char space = ' ';
//
// for (int i = 0; i < str.size(); i++)
// {
// if (str.at(i) != space)
// {
// start = i;
// break;
// }
// }
//
// for (int i = start; i < str.length(); i++)
// {
// if (str.at(i) == space)
// {
// if (i == str.length() - 1)
// {
// break;
// }
// else if (str.at(i + 1) == space)
// {
// break;
// }
//
// }
// else if (str.at(i) != space)
// {
// count++;
// for (j = i; j < str.length(); j++)
// {
// if (j == str.length() - 1)
// {
// return count;
// }
// else if (str.at(j) == space)
// {
// i = j - 1;
// break;
// }
// }
// }
// }
//
// return count;
//}
//
//int main(void)
//{
// string str;
// getline(cin, str);
//
// cout << solution(str);
//
// return 0;
//}