ProblemD Tapioka (水題)

題目大意:

給你一行話,請不要輸出 “bubble” 、 “tapioka”
格式有特別要求,請注意。

分析:

這題你要是不會,是不是應該要撞豆腐了?

字串透過陣列求出,然後加上空白即可

額外話: py 不用5行就能把他寫完吧?
py 真的是程式設計師救星,所有簡單的東西都能變簡單,但是語法不習慣

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
#include <iostream>
#include <bits/stdc++.h>
#define LOCAL
#define F first
#define S second
#define PB push_back
#define MP make_pair

using namespace std;

int main()
{
#ifdef LOCAL
freopen("in1.txt" , "r" , stdin );
//freopen("out.txt" , "w" , stdout );
#endif // LOCAL
string strTemp , strAns[5] ;
int index = 0 ;
while(cin >> strTemp){
if(strTemp == "bubble" || strTemp == "tapioka")
continue ;
strAns[index] = strTemp ;
index++ ;
}

if(index == 0 ){
cout << "nothing" ;
return 0 ;
}
for(int i = 0 ; i < index -1 ; i++){
cout << strAns[i] << ' ' ;
}
cout << strAns[index-1] ;


return 0;
}
  • 版權聲明: 本部落格所有文章除有特別聲明外,均採用 Apache License 2.0 許可協議。轉載請註明出處!
  • © 2020-2024 John Doe
  • Powered by Hexo Theme Ayer
  • PV: UV: