1. 程式人生 > >codeup1967 數組逆置

codeup1967 數組逆置

algorithm etl 翻轉 ostream ace line get include logs

//基本都是多組數據測試,所以不要寫一組數據的代碼格式!!!
//全排列next_permutation()函數還真得用do{}while()循環格式來寫;
#include<iostream> #include<algorithm> #include<string> using namespace std; int main() { string str; while (getline(cin, str))//cin讀字符串遇到空格就截止,用getline是考慮到字符串可能有空格 { reverse(str.begin(), str.end());//翻轉函數是左閉右開,可見end是結尾的下一個位置 cout << str << endl; } return 0; }

codeup1967 數組逆置