赞
踩
输入一个正整数 repeat (0<repeat<10),做 repeat 次下列运算:
输入一个字符串 t 和一个正整数 m,将字符串 t 中从第 m 个字符开始的全部字符复制到字符串 s 中,再输出字符串 s。
要求定义并调用函数 strmcpy(s,t,m), 它的功能是将字符串 t 中从第 m 个字符开始的全部字符复制到字符串 s 中,函数形参s和t的类型是字符指针,形参m的类型是int,函数类型是void。
输入输出示例:括号内为说明,无需输入输出
- 3 (repeat=3)
- happy new year
- 7
- happy
- 1
- new
- 4
结尾无空行
- new year (从"happy new year"第7个字符开始组成的新字符串为"new year")
- happy (从"happy"第1个字符开始组成的新字符串为"happy")
- error input ("new"的长度小于4)
结尾无空行
代码如下:
- #include <stdio.h>
- #include <string.h>
- void strmcpy(char* s, char* t, int m);
- int main()
- {
- char s[1000], t[1000];
- int repeat, i, m;
- scanf("%d\n",&repeat);
- for(i = 0; i < repeat; i++)
- {
- //memset(s, '\0', sizeof(s)); //数组清空
- gets(t);
- scanf("%d",&m);
- getchar();
- if(m > strlen(t))
- {
- printf("error input");
- continue;
- }
- strmcpy(s,t,m);
- puts(s);
- }
- return 0;
- }
- void strmcpy(char* s, char* t, int m)
- {
- int i, j = 0;
- for (i = m - 1; t[i] != '\0'; i++)
- s[j++] = t[i];
- s[j] = '\0'; //关键封位
- }
memset(s, '\0', sizeof(s)) 和 s[j] = '\0' 任选一个写即可~
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。