标签:输出 stdio.h std 长度 get 字符数组 tchar scanf amp
输入一个字符串和一个非负整数N,要求将字符串循环左移N次。
输入在第1行中给出一个不超过100个字符长度的、以回车结束的非空字符串;第2行给出非负整数N。
在一行中输出循环左移N次后的字符串。
Hello World!
2
llo World!He
#include<stdio.h>
#define max 105
int main(){
char s;//指单独一个字符
char t[max];//创建一个字符数组
int i = 0, count = 0, flag = 0;
while ((s=getchar()) != ‘\n‘) {//getchar每次从标准输入读入一个字符 ,标准输入会有‘\n‘???
t[i++] = s;
count++;
}
int N;
scanf("%d",&N);
if(N > count) {
N %= count;
} //这里有个测试点
for(int i=N;i<count;i++){
printf("%c",t[i]);
}
for(int i=0;i<N;i++){
printf("%c",t[i]);
}
return 0;
}
标签:输出 stdio.h std 长度 get 字符数组 tchar scanf amp
原文地址:https://www.cnblogs.com/lingr7/p/9275963.html