实验8-13:补全代码,删除字符数组中多个字符
【问题描述】
输入字符串存在数组char c[30]中,输入m,n,删除下标m开始的n个字符。输出删除后的结果。
说明:请只提供需要补全的代码部分,不需要提供完整程序。可根据需要定义其他变量。
【样例输入】
c programming language
2 12
【样例输出】
c language
#include <stdio.h>
int main()
{ char c[100];int m, n;gets(c);scanf("%d%d", &m, &n);for(int i=m; c[i]!='\0'; i++){c[i] = c[i+n];}puts(c);return 0;//zhuanzai CSDN Liu Wanqing
}
得分10.00 最后一次提交时间:2023-05-05 23:55:53 成功编译,但有警告信息. main.c: In function 'main': main.c:7:5: warning: implicit declaration of function 'gets' [-Wimplicit-function-declaration] gets(c); ^ /tmp/ccROlZ18.o: In function `main': main.c:(.text.startup+0xf): warning: the `gets' function is dangerous and should not be used. 共有测试数据:2 平均占用内存:1.211K 平均运行时间:0.00258S
详细 |