bigintmultiplication.cpp

来自「使用分治技术」· C++ 代码 · 共 21 行

CPP
21
字号
// BigIntMultiplication.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include "BigInteger.h"
#include <fstream>
#include <TIME.H>

int main(int argc, char* argv[])
{
	ifstream in("input.txt");
	ofstream out("output.txt");

	BigInteger<char> a,b,product;
	in>>a>>b;
	product = a * b;
	out<<a<<b<<product;

	return 0;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?