习题8-5 使用函数实现字符串部分复制 (20分)
Posted samgue
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了习题8-5 使用函数实现字符串部分复制 (20分)相关的知识,希望对你有一定的参考价值。
本题要求编写函数,将输入字符串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
", &m);
ReadString(t);
strmcpy( t, m, s );
printf("%s
", s);
return 0;
}
/* 你的代码将被嵌在这里 */
输入样例:
7
happy new year
输出样例:
new year
1 #include <string.h> 2 3 void strmcpy( char *t, int m, char *s ){ 4 int n=strlen(t); 5 if(m>n){ 6 *s=NULL; 7 } 8 else{ 9 for(int i=0;i<=(n-m);i++){ 10 /* 11 这里拿字符1一试,只有一个字符1,m为1 12 i=0,n-m=1,遍历一次,要得到s[0]=t[0]的结果,因此t的下标是m+i-1 13 */ 14 s[i]=t[m+i-1]; 15 } 16 } 17 }
以上是关于习题8-5 使用函数实现字符串部分复制 (20分)的主要内容,如果未能解决你的问题,请参考以下文章