字串 05 字串迴圈左移 20 部分對

2021-06-27 08:28:17 字數 843 閱讀 8141

時間限制

400 ms

記憶體限制

65536 kb

**長度限制

8000 b

判題程式

standard

作者 白洪歡(浙江大學)

輸入乙個字串和乙個非負整數n,要求將字串迴圈左移n次。

輸入格式:

輸入在第1行中給出乙個不超過100個字元長度的、以回車結束的非空字串;第2行給出非負整數n。

輸出格式:

在一行中輸出迴圈左移n次後的字串。

輸入樣例:

hello world!

2

輸出樣例:
llo world!he

#define _crt_secure_no_warnings

#include

#include

#include

#include

using namespace std;

int main();//

char temp; 

int length = 0;

while (cin.getline(str,100)&&cin>>n)

for (int i = 0; i<80; i++)

}n = n%length;

for (int j = n; j < length; j++)

for (int i = 0; i <= n - 1; i++)

cout << endl;

//n = n%length;}}

7 31 字串迴圈左移 20分

輸入乙個字串和乙個非負整數n,要求將字串迴圈左移n次。輸入格式 輸入在第1行中給出乙個不超過100個字元長度的 以回車結束的非空字串 第2行給出非負整數n。輸出格式 在一行中輸出迴圈左移n次後的字串。輸入樣例 hello world 2輸出樣例 llo world he 思路 如樣例,hello w...

5 31 字串迴圈左移 20分

輸入乙個字串和乙個非負整數n,要求將字串迴圈左移n次。輸入在第1行中給出乙個不超過100個字元長度的 以回車結束的非空字串 第2行給出非負整數n。在一行中輸出迴圈左移n次後的字串。hello world 2llo world he include include int main n n lengt...

字串迴圈左移 20 分

題目 輸入乙個字串和乙個非負整數n,要求將字串迴圈左移n次。輸入格式 輸入在第1行中給出乙個不超過100個字元長度的 以回車結束的非空字串 第2行給出非負整數n。輸出格式 在一行中輸出迴圈左移n次後的字串。輸入樣例 hello world 2輸出樣例 llo world he 題解 如果輸入的n等於...