PAT (Basic Level) Practice (中文)-1009-說反話 (20分)
題目連結
給定一句英語,要求你編寫程式,將句中所有單詞的順序顛倒輸出。
輸入格式:
測試輸入包含一個測試用例,在一行內給出總長度不超過 80 的字串。字串由若干單詞和若干空格組成,其中單詞是由英文字母(大小寫有區分)組成的字串,單詞之間用 1 個空格分開,輸入保證句子末尾沒有多餘的空格。
輸出格式:
每個測試用例的輸出佔一行,輸出倒序後的句子。
輸入樣例:
Hello World Here I Come
輸出樣例:
Come I Here World Hello
#include <iostream>
using namespace std;
int main(){
string s[100];
int i=0;
while(true){
cin>>s[i];
if(getchar()=='\n') break;
i++;
}
reverse(s+0, s+i+1);
for(int j=0;j<=i;j++){
cout<<s[j];
if(j!=i) cout<<" ";
}
}
相關文章
- 1003 我要通過!| PAT (Basic Level) Practice
- PAT (Basic Level) Practice 1001 害死人不償命的(3n+1)猜想
- [PAT B] 1009 說反話
- PAT (Advanced Level) Practice 1149 Dangerous Goods Packaging (25分)Go
- PAT-B 1009 說反話【字串】字串
- PAT B1009 說反話(簡單模擬)
- [#181024][PAT Practice] A+B FormatORM
- 1009 說反話
- 7-3 說反話-加強版 (20分)
- Practice
- airflow practiceAI
- scientifically practice DP
- shell practice 03
- shell practice 04
- shell practice 05
- shell practice 06
- shell practice 07
- 英語流利說 Level 4 Unit 1-1 LandformsORM
- 白話說框架框架
- 《雷頓教授》與 Level-5 的中文化探索
- Practice| 流程控制
- SDWebImage中文說明Web
- PAT-B 1025 反轉連結串列【模擬+對映】
- Basic Paxos
- Typescript basicTypeScript
- Vegetables need more practice.
- .NET Core ASP.NET Core Basic 1-2 控制反轉與依賴注入ASP.NET依賴注入
- 聽,是版本在說話
- 會說話的ABAP report
- 首個支援普通話和方言混說的TTS大模型:河南話、上海話、粵語說得溜TTS大模型
- Level Up
- OpenAPI Basic StructureAPIStruct
- Visual Basic for ApplicationAPP
- yolov5s ncnn practiceYOLOCNN
- 反直覺SQL舉例說明SQL
- 白話說https執行原理HTTP
- 英語流利說 Level3 Unit2 Part2 - Sports&Injuries
- Oracle 12.2 RAC on Linux Best Practice DocumentationOracleLinux