C语言编程 C Language Programming - 0010

编程题0010 (from Programming Teaching Assistant (PTA))

移动字母

本题要求编写函数,将输入字符串的前3个字符移到最后。

函数接口定义:void Shift( char s[] );
其中,char s[]是用户传入的字符串,题目保证其长度不小于3;函数Shift须将按照要求变换后的字符串仍然存在s[]里。

裁判测试程序样例:

#include 
#include 
#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

Answer:

void Shift( char s[] )
{
    char a[3];
    int i,j;
    for(i = 0; i < 3 ;i++)
        a[i] = s[i]; 
    for(i = 3; s[i]; i++)
        s[i-3] = s[i];
    for(j = i-3, i = 0; i < 3;i++)
        s[j++] = a[i];
}

Reference:
[1] https://blog.csdn.net/dreampinguo/article/details/81141043

你可能感兴趣的:(C语言编程 C Language Programming - 0010)