袁家伟

导航

2020年2月5日 #

高精度减法

摘要: #include<iostream> using namespace std; string a,b,str; int main() { cin>>a; cin>>b; int sign = 0; if(a==b) { cout<<"0"<<endl; return 0; } if((a < b & 阅读全文

posted @ 2020-02-05 15:19 袁家伟 阅读(129) 评论(0) 推荐(0) 编辑

高精度加法简洁代码

摘要: #include<iostream> using namespace std; string a,b; int len1,len2,len; string str; int main() { cin>>a; cin>>b; len1 = a.length(); len2 = b.length(); 阅读全文

posted @ 2020-02-05 12:53 袁家伟 阅读(341) 评论(0) 推荐(0) 编辑