没想好取什么昵称 2022-01-02 15:23 采纳率: 100%
浏览 24
已结题

字符串的比较与连接——为何将返回值为整型的函数的返回值输出出来,会输出乱码?

img


问:为何用文件输出流 输出的第二行的第一个整型数据,是乱码??

/*字符串的比较与连接,不使用字符串处理函数
两个字符串s1和s2,其长度都不超过30,比较字符串的大小(字符串比较是从左到右逐位比较),
如果s1>s2,输出1;s1=s2,输出0;s1<s2,输出-1。编写函数实现该功能。
int strcmpa(const char *s1,const char *s2)
然后编写函数将两个字符串连接起来
char * strcate(char *s1,const char *s2)
将s2连接到s1之后,并返回s1

如:in.txt
C++ Program
student student
good evening
则:out.txt
-1 C++Program
0 studentstudent
1 goodevening
注意:请勿改动主函数main和其它函数中的任何内容,仅在Begin和End之间填入你编写的若干语句
---------------------------------------------------------------------------------------------------*/
#include<fstream>
using namespace std;
int strcmpa(char *s1,char *s2);
char * strcate(char *s1,char *s2);
int main()
{    ifstream inf("in.txt");
    ofstream outf("out.txt");
    char a[10],b[10];
    int c;
    while(inf>>a>>b)
    {    c=strcmpa(a,b);
        outf<<c<<' '<<strcate(a,b)<<'\n';
    }
    inf.close();
    outf.close();
    return 0;
}
int strcmpa(char *s1,char *s2)
{    while(*s1==*s2)
    {    if(*s1=='\0'&&*s2=='\0')
        {    return 0;
        }
        s1++;
        s2++;
    }
    if(*s1>*s2)
    {    return 1;
    }
    else
    {    return -1;
    }
}
char *strcate(char *s1,char *s2)
{    char *p=s1;
    while(*s1++)
    {
    }
    s1--;
    while(*s2)
    {    *s1=*s2;
        s1++;
        s2++;
    }
    *s1='\0';
    return p;
}


展开全部

  • 写回答

1条回答 默认 最新

  • 书山客 2022-01-04 16:39
    关注
    
    #include<fstream>
    using namespace std;
    int strcmpa(char* s1, char* s2);
    char* strcate(char* s1, char* s2);
    int main()
    {
        ifstream inf("in.txt");
        ofstream outf("out.txt");
        char a[10] = { 0 }, b[10] = { 0 };
        int c;
        while (inf >> a >> b)
        {
            c = strcmpa(a, b);
            outf << c << ' ' << strcate(a, b) << '\n';
        }
        inf.close();
        outf.close();
        return 0;
    }
    int strcmpa(char* s1, char* s2)
    {
        while (*s1 == *s2)
        {
            if (*s1 == '\0' && *s2 == '\0')
            {
                return 0;
            }
            s1++;
            s2++;
        }
        if (*s1 > *s2)
        {
            return 1;
        }
        else
        {
            return -1;
        }
    }
    char* strcate(char* s1, char* s2)
    {
        char* p = s1;
        while (*s1++)
        {
        }
        s1--;
        while (*s2)
        {
            *s1 = *s2;
            s1++;
            s2++;
        }
        *s1 = '\0';
        return p;
    }
    
    

    展开全部

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

问题事件

  • 系统已结题 4月23日
  • 已采纳回答 4月16日
  • 创建了问题 1月2日

悬赏问题

  • ¥15 DevEco studio开发工具 真机联调找不到手机设备
  • ¥15 请教前后端分离的问题
  • ¥100 冷钱包突然失效,急寻解决方案
  • ¥15 下载honeyd时报错 configure: error: you need to instal a more recent version of libdnet
  • ¥15 距离软磁铁一定距离的磁感应强度大小怎么求
  • ¥15 霍尔传感器hmc5883l的xyz轴输出和该点的磁感应强度大小的关系是什么
  • ¥15 vscode开发micropython,import模块出现异常
  • ¥20 Excel数据自动录入表单并提交
  • ¥30 silcavo仿真,30分钟,只需要代码
  • ¥15 FastReport 怎么实现打印后马上关闭打印预览窗口
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部