练习8-8 移动字母(10 分)
本题要求编写函数,将输入字符串的前3个字符移到最后。
函数接口定义:
void Shift( char s[] );
其中char s[]是用户传入的字符串,题目保证其长度不小于3;函数Shift须将按照要求变换后的字符串仍然存在s[]里。
裁判测试程序样例:
1 | #include <stdio.h> |
输入样例:
abcdef
输出样例:
1 | #include <stdio.h> |
本题要求编写函数,将输入字符串的前3个字符移到最后。
void Shift( char s[] );
其中char s[]是用户传入的字符串,题目保证其长度不小于3;函数Shift须将按照要求变换后的字符串仍然存在s[]里。
1 | #include <stdio.h> |
abcdef
1 | #include <stdio.h> |
Update your browser to view this website correctly. Update my browser now