PTA6-15 使用函数实现字符串部分复制(C)
本题要求编写函数,将输入字符串t中从第m个字符开始的全部字符复制到字符串s中。
函数接口定义:
void strmcpy( char *t, int m, char *s );
函数strmcpy将输入字符串char *t中从第m个字符开始的全部字符复制到字符串char *s中。若m超过输入字符串的长度,则结果字符串应为空串。
裁判测试程序样例:
#include <stdio.h>
#define MAXN 20
void strmcpy( char *t, int m, char s );
void ReadString( char s[] ); / 由裁判实现,略去不表 */
int main()
{
char t[MAXN], s[MAXN];
int m;
scanf("%d\n", &m);
ReadString(t);
strmcpy( t, m, s );
printf("%s\n", s);return 0;
}
/* 你的代码将被嵌在这里 */
输入样例:
7
happy new year
输出样例:
new year
void strmcpy( char *t, int m, char *s )
{int len = 0;char* tmp = t;//创建一个临时的指针tmp,防止直接用t指针,导致后面不好指向第m个字符while(*tmp != '\0'){len++;tmp++;}if(m <= len){t = t + m - 1;//注意:第m个字符的下标是m-1while( *t != '\0'){*s = *t;t++;s++;}*s='\0';}else{*s ='\0';}
}