[PTA]练习8-8 移动字母
Posted Spring-_-Bear
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[PTA]练习8-8 移动字母相关的知识,希望对你有一定的参考价值。
[PTA]练习8-8 移动字母
本题要求编写函数,将输入字符串的前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;
}
/* 你的代码将被嵌在这里 */
- 提交结果:
- 源码:
#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;
}
/* 你的代码将被嵌在这里 */
// 自我实现,假设以#结束字符串输入
void GetString(char s[]) /* 实现细节在此不表 */
{
for (int i = 0; i < MAXS; i++)
{
s[i] = getchar();
if (s[i] == '#')
{
s[i] = '\\0';
break;
}
}
}
void Shift(char s[])
{
int sLen = strlen(s);
char str[3];
// 将s数组中的前三个元素保存
str[0] = s[0];
str[1] = s[1];
str[2] = s[2];
// s数组中从第四个元素开始依次往前移
for (int i = 3; i < sLen; i++)
{
s[i - 3] = s[i];
}
// 将之前保存的s数组的前三个元素放入s数组尾
s[sLen - 3] = str[0];
s[sLen - 2] = str[1];
s[sLen - 1] = str[2];
}
以上是关于[PTA]练习8-8 移动字母的主要内容,如果未能解决你的问题,请参考以下文章