5 31 字串迴圈左移 20分

2022-08-15 17:00:13 字數 454 閱讀 4246

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

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

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

hello world!

2

llo world!he

#include #include int main()

n = n % length;

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

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

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

printf_s("%s", a);

return 0;

}/* 你的**將被嵌在這裡 */

PTA 5 31 字串迴圈左移

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

PTA 5 31 字串迴圈左移

輸入乙個字串和乙個非負整數n n,要求將字串迴圈左移nn次。輸入在第1行中給出乙個不超過100個字元長度的 以回車結束的非空字串 第2行給出非負整數nn。在一行中輸出迴圈左移n n次後的字串。hello world 2llo world he 方法一 直接用字元陣列實現 直觀 注意輸入整數超過字元陣...

7 31 字串迴圈左移 20分

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