gpt4 book ai didi

c - 当两个 long long int 给出的结果大于 long long int 时,它们的总和?

转载 作者:太空宇宙 更新时间:2023-11-04 04:37:25 25 4
gpt4 key购买 nike

当结果将大于 C 中的 long long int 时,是否有可能对两个不同的 long long int 变量求和?

最佳答案

由于 OP 想要“在屏幕上打印结果”,因此将数字分成两部分:Most-Significant-Digits 和 Least-Significant-Digit。

#include <stdlib.h>

void print_long_long_sum(long long a, long long b) {
if ((a < 0) == (b < 0)) { // a and b of the same sign?
// Sum the Most-Significatn_Digits and Least-Significant Digit separately
int sumLSD = (int) (a % 10 + b % 10);
long long sumMSDs = a / 10 + b / 10 + sumLSD / 10;
sumLSD %= 10;
printf("sum = ");
if (sumMSDs) {
printf("%lld", sumMSDs);
// Since sign already printed, insure next print is positive
sumLSD = abs(sumLSD);
}
printf("%d\n", sumLSD);
} else { // No need to separate as there is no chance for overflow
printf("sum = %lld\n", a + b);
}
}

关于c - 当两个 long long int 给出的结果大于 long long int 时,它们的总和?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29565934/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com