我对编程比较陌生:)。
假设我想创建一个程序,提示用户输入两个最长为 50 位的正数,然后从第一个数字中减去第二个数字。
例如:
用户输入第一个正数: 239834095803945862440385983452184985298358
第二个号码: 939542309853120721934217021372984729812
==================================================== ==========================
程序输出差异: 238894553494092741718901766430812000568564
或者,如果为负: -29837430045
==================================================== ==========================
数字的每个数字都将作为单独的元素存储在数组中。这是我目前接受用户输入的方式:
int read_array(int int_array[], int MAX_SIZE) {
char number;
int count = 0;
//set all array entries to 0.
for (int i = 0; i < MAX_SIZE; i++){
int_array[i] = 0;
}
do { //processes each individual char in the istream
cin.get(number);
// puts char on to the array until it hits the
// end of the number (end of the line)
if(( number != '\n') && (count < MAX_SIZE) && (isdigit(number))) {
int_array[count] = int(number) - int('0');
}
count++; //increments count
} while (number != '\n');
//tests if number is too large
int digitcount = count - 1;
if (digitcount > MAX_SIZE) {
cout << endl << "ERROR: The number is above 50 digits!" << endl;
return 0;
}
问题:
如何做减法让我望而却步。我已经尝试解决这个问题两周了,这很可能是我错过的一些微不足道的事情。
我试过了:
- 将元素数组转换回一个完整的 int
- 编写我自己的程序来对数字进行长减法
ETC...
但是,只有在达到一定数量的数字和/或它们是正数/负数之前,输出才会成功。我很困惑,我不确定最好的方法是减去两个正数数组以获得可以容纳正数和负数的成功输出,如示例所示。非常感谢任何帮助:)。
编辑:我的尝试:
#include "long_sub.h"
#include <sstream>
#include <vector>
using namespace std;
int long_sub(int a[], int b[], const int size) {
stringstream ss;
int const sizes = 50;
int c = 0; //borrow number
int borrow = 1; // the '1' that gets carried to the borrowed number
int r[sizes];
for (int i = 0; i < size; i++) {
r[i] = 0;
}
//initialise answer array to 0.
for (int i = size - 1; i >= 0; i--) {
//handles zeros
if (a[i] < b[i] && a[i]) {
//takes the borrow from the next unit and appends to a.
ss << borrow << a[i];
ss >> c;
ss.clear(); // clears stringstream for next potential borrow.
int temp = c - b[i];
r[i] = abs(temp);
} else {
int temp = a[i] - b[i];
r[i] = abs(temp);
}
}
for (int i = 0; i <= size - 1; i++ ) {
cout << r[i];
}
cout << endl;
return r[sizes];
}