解题思路:看下面↓
注意事项:多注意注意
参考代码:
#include<bits/stdc++.h>
using namespace std;
const int N=2e+3+10;
int x[N]={0},y[N]={0},sum[N]={0},s[N]={0};
void sw(std::string &s)//字符串逆转函数
{
for(int i=0;i<s.length()/2;i++)
swap(s[i],s[s.length()-1-i]);
}
void fun(std::string a,std::string b)
{
sw(a);//字符串逆转
sw(b);//字符串逆转
int len1=a.length(),len2=b.length(),len=len1+len2-1;
int t=0,c=0;
for(int i=0;i<len1;i++)//字符串转化为数字
x[i]=a[i]-'0';
for(int i=0;i<len2;i++)//字符串转化为数字
y[i]=b[i]-'0';
for(int i=0;i<len1;i++)
{
for(int j=0;j<len2;j++)
{
sum[i+j]+=x[i]*y[j];//交叉相乘(还未进位)
}
}
for(int i=0;i<len;i++)//进位
{
s[i]=(sum[i]+t)%10;
t=(sum[i]+t)/10;
}
if(t!=0)//进位
{
s[len]=t;
len++;
}
for(int i=len-1;i>=0;i--)//逆序输出
cout<<s[i];
}
int main()
{
string a,b;
cin>>a>>b;
if(a=="0"||b=="0")//其中一个为0,输出0
cout<<0;
else
fun(a,b);
return 0;
}
0.0分
1 人评分
C语言网提供由在职研发工程师或ACM蓝桥杯竞赛优秀选手录制的视频教程,并配有习题和答疑,点击了解:
一点编程也不会写的:零基础C语言学练课程
解决困扰你多年的C语言疑难杂症特性的C语言进阶课程
从零到写出一个爬虫的Python编程课程
只会语法写不出代码?手把手带你写100个编程真题的编程百练课程
信息学奥赛或C++选手的 必学C++课程
蓝桥杯ACM、信息学奥赛的必学课程:算法竞赛课入门课程
手把手讲解近五年真题的蓝桥杯辅导课程
发表评论 取消回复