练习8-8 移动字母 (10 分)
Posted yangbocsu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了练习8-8 移动字母 (10 分)相关的知识,希望对你有一定的参考价值。
本题要求编写函数,将输入字符串的前3个字符移到最后。
函数接口定义:
void Shift( char s[] );
其中char s[]
是用户传入的字符串,题目保证其长度不小于3;函数Shift
须将按照要求变换后的字符串仍然存在s[]
里。
裁判测试程序样例:
#include <stdio.h>
#include <string.h>
#define MAXS 10
void Shift( char s[] );
void GetString( char s[] ); /* 实现细节在此不表 */
int main()
{
char s[MAXS];
GetString(s);
Shift(s);
printf("%s\\n", s);
return 0;
}
/* 你的代码将被嵌在这里 */
输入样例:
abcdef
输出样例:
defabc
【参考代码】
// yangbocsu 2021/05/04
void Shift( char s[] )
{
int length = strlen(s);
char tmp;
for(int i = 0; i < 3; i++)//先移动第一元素 只移动前3个元素
{
tmp = s[0];
for(int j = 0; j < length-1; j++) //当第一个元素移走了,后面的补齐过来,就空出了最后面这个了
{
s[j] = s[j+1];
}
s[length - 1] = tmp ;
}
}
以上是关于练习8-8 移动字母 (10 分)的主要内容,如果未能解决你的问题,请参考以下文章