主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
我与代码的故事
2024年5月10日 00:03
大整数加法(大数问题py直接秒了) 题解:
P1474
回复 0
|
赞 1
|
浏览 516
while True: try: a, b = map(int, input().split()) print(a + b) except: break
williams
2024年3月28日 14:33
大整数加法 题解:C语言只有50%
P1474
回复 1
|
赞 0
|
浏览 627
#include <stdio.h> #include <stdbool.h> #include <math.h> #include <stdlib.h> #include <string.h> #include <ctype.h> #include <time.h> int main(){ char s1[1000],s2[1000],r[2000]; while(scanf("%s %s",s1,s2)!=EOF){ int len = st...
zx142407789
2024年3月22日 17:28
大整数加法 题解:自用笔记(C语言)
P1474
回复 0
|
赞 0
|
浏览 495
#include<stdio.h> #include<string.h> #include<stdlib.h> void largeplus(char* s1, char* s2) { int len1 = strlen(s1); int len2 = strlen(s2);//确定位数 int len = len1 > len2 ? len1 : len2;//取位数多的 int* arr1 = (int*)malloc(sizeof(int)* (len+1)); int* arr2 = (int*)malloc...
yanmy
2024年3月22日 16:42
大整数加法 题解:用python投机取巧
P1474
回复 0
|
赞 0
|
浏览 422
while True: try: a, b = map(int, input().split()) print(a + b) except: break
渐鸿于陆
2024年3月21日 17:41
大整数加法 题解:C语言,用字符数组存储大数
P1474
回复 0
|
赞 0
|
浏览 509
#include<stdio.h> #include<string.h> char a[1005]; char b[1005]; char c[1005]; int _max(int a,int b){ return a>b?a:b; } int main(void){ //多组输入 while(scanf("%s %s",a,b) !=EOF){ &nb...
Cookie‘s AE86
2024年3月18日 16:58
大整数加法 题解:c++和python实现(python不存在取值范围
P1474
回复 0
|
赞 0
|
浏览 651
c++实现 #include<bits/stdc++.h> using namespace std; int main(){ string s1, s2; int lens1, lens2, lens; int tmp; bool jinwei = false; //进位 while(cin >> s1){ string s; cin >> s2; reverse(s1.begin(), s1.end());...
aolutuolaman
2024年3月14日 22:53
大整数加法 题解:c++
P1474
回复 0
|
赞 0
|
浏览 578
#include<bits/stdc++.h> using namespace std; int main() { string s1, s2; while (cin >> s1 >> s2) { int jw = 0; // 进位,初始化为0 for (int i = s1.size() - 1; i != -1; i--) { // 从字符串末尾开始逐位相加 if ((s1[i] - '0') + (s2[i] - '0') + jw >= 10) ...
光明守护神
2024年3月14日 20:04
大整数加法 题解:C++
P1474
回复 0
|
赞 0
|
浏览 580
#include<iostream> #include <string> using namespace std; int main() { string a, b; while (cin >> a >> b) { int jw = 0;//进位 auto i = a.end() - 1, j = b.end() - 1; for (; i != a.begin(); i--, j--) { if (*i + *j + jw > 9 + 2 * '0') { ...
799
2024年3月9日 10:23
大整数加法 题解:
P1474
回复 0
|
赞 0
|
浏览 801
#include<bits/stdc++.h> using namespace std; string Add(string a, string b) { //让a的长度大于b if(a.size() <b.size()) swap(a,b); //模拟加法运算,用到进位carry string r(a.size(),0);//存放a+b的和 b.insert(b.begin(),a.size() - b...
AA蚊
2024年2月23日 23:12
大整数加法 题解:
P1474
回复 0
|
赞 2
|
浏览 648
#include<iostream> #include<string> #include<sstream> using namespace std; void main(){ string s1,s2;//字符串存数 while (cin>>s1>>s2) { int len = s1.length(); //转入数组...
1
2
3
题目
大整数加法
题解数量
24
发布题解
热门题解
1
见到大数相加或相乘,建议用java
2
大整数加法 题解:c++版本
3
大整数加法 题解:
4
傻逼题目条件浪费时间
5
大整数加法(大数问题py直接秒了) 题解:
6
C
7
题解:大整数加法
8
大整数加法 题解:用python投机取巧
9
大数加法
10
大整数加法 题解:自用笔记(C语言)