acm wrong answer是由什么引起的?北邮一道简单的减法题:北邮一道简单的减法题:DescriptionCalculate A-BInputTwo integer a and b(-10^100 < a,b < 10^100)OutputOutput a-bSample Input1 2Sample Output-1#include using namespace std
来源:学生作业帮助网 编辑:作业帮 时间:2024/11/15 04:50:45
acm wrong answer是由什么引起的?北邮一道简单的减法题:北邮一道简单的减法题:DescriptionCalculate A-BInputTwo integer a and b(-10^100 < a,b < 10^100)OutputOutput a-bSample Input1 2Sample Output-1#include using namespace std
acm wrong answer是由什么引起的?北邮一道简单的减法题:
北邮一道简单的减法题:
Description
Calculate A-B
Input
Two integer a and b(-10^100 < a,b < 10^100)
Output
Output a-b
Sample Input
1 2
Sample Output
-1
#include
using namespace std;
int main()
{
int a,b;
cin >> a >> b;
cout
acm wrong answer是由什么引起的?北邮一道简单的减法题:北邮一道简单的减法题:DescriptionCalculate A-BInputTwo integer a and b(-10^100 < a,b < 10^100)OutputOutput a-bSample Input1 2Sample Output-1#include using namespace std
-10^100
这个数字太大了,你这样的根本存不下来的,比如输入
10005545646666666666666666666666666666
12111111111111111111111111111111111111111111111
你的答案还能正确吗?