鱼C论坛

 找回密码
 立即注册
查看: 1146|回复: 7

[已解决]关于字符数组与字符串的提问

[复制链接]
发表于 2020-4-28 20:11:14 | 显示全部楼层 |阅读模式
4鱼币
原题设:编写一个程序,从字符串S1中,从第n个字符开始的m个字符串复制到字符串S2中。
受困点:只知道如何截取从第n个字符开始的m个字符串。个人想法是借用一个方法读取新的S1,然后直接使用strcpy函数替换。但是却又无从下手......望高手不吝赐教,不胜感激!
#include <stdio.h>
#include <string.h>

int main(void)
{
        char str[30];
        printf("Enter a character string : ");
        gets_s(str);

        int m, n, i, j, k;
        printf("Please enter the number of n, m apart: ");//按照要求从第n个字符开始,抽取m个字符
        scanf_s("%d %d", &n, &m);

        if (n >= 0 && m <= strlen(str))
        {
                for (k = n - 1; k < (n + m - 1); k++)
                {
                        printf("%c", str[k]);
                }
        }
        else
        {
                printf("The value of m or n is wrong, please enter again!");
        }
        return 0;
}
最佳答案
2020-4-28 20:11:15
直接用一个char数据接收每一个遍历的字符就行了,没必要用strcpy

最佳答案

查看完整内容

直接用一个char数据接收每一个遍历的字符就行了,没必要用strcpy
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-4-28 20:11:15 | 显示全部楼层    本楼为最佳答案   
直接用一个char数据接收每一个遍历的字符就行了,没必要用strcpy
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-4-28 20:32:15 | 显示全部楼层
BngThea 发表于 2020-4-28 20:26
直接用一个char数据接收每一个遍历的字符就行了,没必要用strcpy

但是我上面的代码只是把转化后的代码打印出来了2333我还是有点蒙
恕我愚钝,可以请你展示下具体的操作代码么。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-4-28 20:46:20 | 显示全部楼层
楼主这个意思吗?
#include <stdio.h>
#include <string.h>

int main(void)
{
        char str[30],str_2[30]; //str_2用于存储需要的字符串 
        int m, n, i=0, k;
        
        printf("Enter a character string : ");
        gets(str);
        
                printf("Please enter the number of n, m apart: ");
        scanf("%d %d", &n, &m);

        if (n >= 0 && m <= strlen(str)-n)
        {
                for (k = n - 1; k < (n + m - 1); k++)
                {
                        str_2[i++]=str[k];
                }
                str_2[i]='\0';        //构成字符串,如果没有在标准的c中直接打印字符串会报错。 
                printf("%s\n",str_2);
        }
        else
        {
                printf("The value of m or n is wrong, please enter again!");
        }
        return 0;
}

运行结果:

爱奇艺20200428204509.png

评分

参与人数 1荣誉 +5 鱼币 +5 贡献 +3 收起 理由
sulley + 5 + 5 + 3

查看全部评分

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-4-28 21:05:32 | 显示全部楼层

#include <stdio.h>
#include <string.h>

int main(void)
{
    char str1[30], str2[30]; //str_2用于存储需要的字符串
    int m, n, i = 0, k;

    printf("Enter a character string : ");
    gets_s(str1);

    printf("Enter a character string : ");
    gets_s(str2);

    printf("Please enter the number of n, m apart: ");
    scanf_s("%d %d", &n, &m);

    if (n >= 0 && m <= strlen(str1) - n)
    {
        for (k = n - 1; k < (n + m - 1); k++)
        {
            str2[i++] = str1[k];
        }
        str2[i] = '\0';        //构成字符串,如果没有在标准的c中直接打印字符串会报错。
        printf("%s\n", str2);
    }
    else
    {
        printf("The value of m or n is wrong, please enter again!");
    }
    return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-4-28 21:06:26 | 显示全部楼层

非常感谢你的点拨,我终于明白该怎么解决了!谢谢你!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-4-28 21:08:09 | 显示全部楼层
非常感谢你一针见血的知道,我理解你的意思了!谢谢你!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-4-28 21:16:45 | 显示全部楼层
sulley 发表于 2020-4-28 21:08
非常感谢你一针见血的知道,我理解你的意思了!谢谢你!

不客气
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-14 18:13

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表