7-31 字串迴圈左移,這題毫無挑戰
題目描述:
輸入一個字串和一個非負整數N,要求將字串迴圈左移N次。
輸入格式:
輸入在第1行中給出一個不超過100個字元長度的、以回車結束的非空字串;第2行給出非負整數N。
輸出格式:
在一行中輸出迴圈左移N次後的字串。
輸入樣例:
Hello World!
2
輸出樣例:
llo World!He
這題毫無挑戰
#include<stdio.h>
#include<string.h>
int main()
{
char a[101];
gets(a);
int n,i;
scanf("%d",&n);
n=n%strlen(a);
for(i=n;i<strlen(a);i++)
{
printf("%c",a[i]);
}
for(i=0;i<n;i++)
{
printf("%c",a[i]);
}
return 0;
}
相關文章
- 無限for迴圈(死迴圈)
- 微課|中學生可以這樣學Python(例6.2):列表迴圈左移位Python
- 無迴圈 JavaScriptJavaScript
- OCR迴圈:說說遊戲中的挑戰與體驗遊戲
- 敢挑戰這3道 JavaScript 題嗎JavaScript
- 【基礎題】【for迴圈】二重迴圈
- 一個毫無道理的iOS問題iOS
- 理解 vue-router的beforeEach無限迴圈的問題Vue
- python 基礎習題6--for迴圈和while迴圈PythonWhile
- require()迴圈引用問題UI
- for 迴圈與 while 迴圈While
- while迴圈 case迴圈While
- 牛客挑戰賽23-A.字串(尺取)字串
- C語言——迴圈結構(for迴圈,while迴圈,do-while迴圈)C語言While
- JS專題之事件迴圈JS事件
- 口水戰升級,Uber稱Waymo的指控“毫無根據”
- CSS實現迴圈無縫滾動CSS
- 無聲杯 xss 挑戰賽 writeup
- 《12 分鐘》創意總監淺談時間迴圈設計所遇到的重重挑戰
- FastJson中迴圈引用的問題ASTJSON
- ConcurrentHashMap竟然也有死迴圈問題?HashMap
- 關於一個迴圈請求與迴圈計時器的問題
- while迴圈以及do while迴圈While
- android可以無限迴圈滑動的ViewPagerAndroidViewpager
- shell語句無限迴圈小常識
- if for迴圈
- For 迴圈
- if迴圈
- 迴圈
- for迴圈
- JavaScript 事件迴圈竟還能這樣玩!JavaScript事件
- 04流程控制 for迴圈,while迴圈While
- 面試題:Spring 的迴圈依賴問題面試題Spring
- 《sayonara wild heart》:這款音樂遊戲會讓你毫無睡意遊戲
- 迴圈內臨時變數問題變數
- Linux while 迴圈中使用ssh問題LinuxWhile
- 迴圈請求報204問題分析
- 原生js系列之無限迴圈輪播元件JS元件