azazinco 2019-12-01 09:33 采纳率: 0%
浏览 243
已结题

高精度减法,下面代码的memset函数有什么作用?为什么删掉输出就会乱码?

#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
int main()
{
    int a[256], b[256], c[256], lena, lenb, lenc, i;
    char n[256], n1[256], n2[256];
    memset(a, 0, sizeof(a));
    memset(b, 0, sizeof(b));
    memset(c, 0, sizeof(c));
    printf("Input minuend:");
    gets_s(n1);
    printf("Input subtrahend:");
    gets_s(n2);
    if (strlen(n1) < strlen(n2) || strlen(n1) == strlen(n2) && strcmp(n1, n2) < 0)
    {
        strcpy_s(n, n1);
        strcpy_s(n1, n2);
        strcpy_s(n2, n);
        cout << "-";
    }
    lena = strlen(n1);
    lenb = strlen(n2);
    for (int i = 0; i <= lena - 1; i++)
        a[lena - 1] = int(n1[i] - '0');
    for (int i = 0; i <= lenb - 1; i++)
        b[lenb - 1] = int(n2[i] - '0');
    i = 1;
    while (i <= lena || i <= lenb)
    {
        if (a[i] < b[i]) {
            a[i] += 10;
            a[i + 1]--;
        }
        c[i] = a[i] - b[i];
        i++;
    }
    lenc = i;
    while ((c[lenc]) == 0 && lenc > 1)
        lenc--;
    for (i = lenc; i >= 1; i--)
        cout << c[i];
    cout << endl;
    system("pause");
    return 0;
}
  • 写回答

3条回答 默认 最新

  • threenewbee 2019-12-01 09:38
    关注

    作用是将abc三个数组的每个元素都设置为0
    否则没有赋值的地方都是随机的值,自然计算出来就不对了。

    评论

报告相同问题?

悬赏问题

  • ¥15 QTableWidget重绘程序崩溃
  • ¥15 51寻迹小车定点寻迹
  • ¥15 谁能帮我看看这拒稿理由啥意思啊阿啊
  • ¥15 关于vue2中methods使用call修改this指向的问题
  • ¥15 idea自动补全键位冲突
  • ¥15 请教一下写代码,代码好难
  • ¥15 iis10中如何阻止别人网站重定向到我的网站
  • ¥15 滑块验证码移动速度不一致问题
  • ¥15 Utunbu中vscode下cern root工作台中写的程序root的头文件无法包含
  • ¥15 麒麟V10桌面版SP1如何配置bonding