[摘要]所谓的高精度运算,是指参与运算的数范围大大超出了标准数据类型(整型、实型)能表示的范围运算。这个时候只能用数组来表示参与运算的数字,那么他们的运算也就不能简单的直接进行了。
#include "stdafx.h"
#include<stdio.h>
#include<string.h>
int main() {
char numberN[1500], numberM[1500];
scanf("%s%s", numberN, numberM);
int n = strlen(numberN), m = strlen(numberM);
int a[3], b[3];
int i, j;
for (i =