E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
POJ2389
C++高精度整数加减乘除模板
其中高精度乘法通过了
POJ2389
,其他没有测过,不过应该是没有问题的。其中高精度除法返回一对string,分别表示商和余数。
王爷的大房子
·
2020-07-30 02:20
POJ2389
—— 高精度乘法
直接上代码了:#include#include#include#include#include#include#include#include#include#include#defineLLlonglong#defineMAX(a,b)(a>b?a:b)#defineMIN(a,b)(a=0;i--)a[lena++]=s[i]-'0';gets(s);for(inti=strlen(s)-1;
DOLFAMINGO
·
2017-03-27 21:03
基础题
大整数乘法(
POJ2389
)
题目链接:http://poj.org/problem?id=2389#include #include #defineMax100 chara[Max]; charb[Max]; intsa[Max]; intsb[Max]; intans[Max*Max]; intmain() { scanf("%s",a); getchar(); scanf("%
小草的大树梦
·
2016-03-23 21:00
poj2389
大整数乘法
#include#include#includeusingnamespacestd;chara[45],b[45];intans[100]={0};intc[45]={0},d[45]={0};intmain(){scanf("%s",a);intlen1=strlen(a);reverse(a,a+len1);scanf("%s",b);intlen2=strlen(b);reverse(b,b
这个昵称好像藏起来了
·
2016-02-01 00:35
模拟小结
acm
poj2389
大整数乘法
#include#include#includeusingnamespacestd;chara[45],b[45];intans[100]={0};intc[45]={0},d[45]={0};intmain(){scanf("%s",a);intlen1=strlen(a);reverse(a,a+len1);scanf("%s",b);intlen2=strlen(b);reverse(b,b
Summer__show_
·
2016-02-01 00:00
poj2389
大整数乘法
#include <iostream>using namespace std;const int N=42;char str1[N],str2[N];int s1[N],s2[N],result[2*N];int main(){ int i,j,len1,len2,len; memset(str1,'\0',siz
·
2015-11-12 16:54
poj
POJ2389
: 大数字乘法算法
2014-12-26 大数字乘法算法一般是采用模拟"小学生乘法演算过程”方法。 主要算法思想: 1. 乘数a第i)位与乘数b第j)位数字相乘,并将该乘积结果放到乘积结果数组product的第(i+j-1)位中; 2. 检查product的第(i+j-1)位中储存的数字是否超过或等于10,若是,则“取余并且进位”。 细节参考代码: 1 #includ
·
2015-11-05 08:57
poj
poj2389
高精度,java做 View Code import java.util. * ; import java.io. * ; import java.math. * ; public class Main { static
·
2015-11-03 21:41
poj
大数乘法
poj2389
思路: 大数乘法:同样是模拟的策略,将中一个拆成一位一位的去乘,再调用大数加法。 同样返回的为string。 代码如下: 1 #include<iostream> 2 #include<string> 3 using namespace std;//大数加法 4 string add(string a,str
·
2015-10-23 08:34
poj
大数乘法 poj 2389 ||大数乘法 hdu1402 FFT模板
poj2389
:BullMathTimeLimit:1000MSMemoryLimit:65536KTotalSubmissions:13694Accepted:7065DescriptionBullsaresomuchbetteratmaththanthecows.Theycanmultiplyhugeintegerstogetherandgetperfectlypreciseanswers
Tian_Fei
·
2015-08-13 09:01
大数问题
Poj2389
importjava.math.BigDecimal; importjava.util.Scanner; publicclassMain{ publicstaticvoidmain(String[]args){ Scannerscan=newScanner(System.in); BigDecimalb1=scan.nextBigDecimal(); BigDecimalb2=scan.
tan313
·
2014-10-20 15:00
poj2389
――Bull Math
原题:DescriptionBullsaresomuchbetteratmaththanthecows.Theycanmultiplyhugeintegerstogetherandgetperfectlypreciseanswers...orsotheysay.FarmerJohnwondersiftheiranswersarecorrect.Helphimcheckthebulls'answer
bingsanchun
·
2013-04-04 11:00
java
开发技术
POJ2389
:Bull Math
DescriptionBullsaresomuchbetteratmaththanthecows.Theycanmultiplyhugeintegerstogetherandgetperfectlypreciseanswers...orsotheysay.FarmerJohnwondersiftheiranswersarecorrect.Helphimcheckthebulls'answers.R
libin56842
·
2013-03-19 16:00
ACM
poj
高精度
解题报告
poj2389
大数乘法
poj2389
大数乘法#include#includeusing namespace std;string BigIntegerMult(const string &str1,const string
寒月
·
2011-06-09 16:00
poj2389
java.io.BufferedInputStream; import java.math.BigInteger; import java.util.Scanner; /** * *
poj2389
200830740306
·
2010-02-26 11:00
java
上一页
1
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他