资源简介

大整数乘法 c++ 代码 大整数乘法 c++ 代码 大整数乘法 c++ 代码 大整数乘法 c++ 代码 大整数乘法 c++ 代码 大整数乘法 c++ 代码 大整数乘法 c++ 代码 大整数乘法 c++ 代码

资源截图

代码片段和文件信息

// 7.2.cpp : 定义控制台应用程序的入口点。
//

#include “stdafx.h“
#include 
using namespace std;
#define MAX_LEN 200

int _tmain(int argc _TCHAR* argv[])
{

char s1[MAX_LEN +10];
char s2[MAX_LEN +10];
int an1[MAX_LEN +10] ={0};
int an2[MAX_LEN +10] = {0} ;
int result[MAX_LEN*2 +10] = {0};
int ij;
cin >> s1 >> s2;

int len1 = strlen(s1);
int len2 = strlen(s2);
j = 0 ;
for(i = len1-1;i >= 0;i --)
an1[j++] = s1[i] - ‘0‘;
j = 0;
for(i = len2 - 1;i >= 0;i --)
an2[

评论

共有 条评论