鱼C论坛

 找回密码
 立即注册
查看: 2347|回复: 1

vs2019,堆栈损坏(新手,不知道啥意思),代码如下

[复制链接]
发表于 2021-4-25 11:32:19 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include<iostream>
#include<string>

using namespace std;

int  Len(int all)
{
        int i = 1;
        while (i!=0)
        {
                i = all / 10;
                if (i != 0)
                {
                        i++;
                }
                return i;
        }

}

void Print(int all)
{
        string str2[]{ "ling","yi","er","san","si","wu","liu","qi","ba","jiu" };

        int a[3];

        int i = Len(all);

        for (; i >= 0; i--)
        {
                a[i - 1] = all % 10;
                all = all / 10;
        }

        for (int j = 0; j < i; j++)
        {
                cout << " " << str2[a[j]];
        }       
}

int main()
{
        //定义一个string类对象数组来按位保存数据
        string str1;

        cout << "请输入一个正整数" << endl;
        cin >> str1;

        int all = 0;
        int i = str1.size();//得到str1的长度;

        for (int j = 0; j < i; j++)//从打一个数字开始加,比如1+4+5;
        {
                all += str1[j]-48;//转换为数字;
        }

        Print(all);
       

        return 0;
}

是一个运行是错误,错误如下:
Run-Time Check Failure #2 - Stack around the variable 'a' was corrupted.

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

使用道具 举报

 楼主| 发表于 2021-4-25 11:57:14 | 显示全部楼层
解决了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-14 15:24

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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