欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【输入】SSL_1238 小X的加法难题

程序员文章站 2022-03-14 19:39:56
...

题意

给出一个字符串,里面有两个数aabb,求出它们的和,如果超过10810^8,输出"Large""Large"(字符串中间有些空格)。

思路

用快速输入输出,在里面判断一下空格。

代码

#include<cstdio>
#include<cstring>
using namespace std;

long long ans, a, b;

void read(long long &tot) {
	tot = 0;
	char c = getchar();
	while (c < '0' || c > '9') c = getchar();
	while (c >= '0' && c <= '9') {
		tot = tot * 10 + c - 48, c = getchar();
		while (c == ' ') c = getchar();
	}
}

int main() {
	read(a);
	read(b);
	if (a > 100000000 - b) printf("Large");
	else printf("%d", a + b);
}
相关标签: 模拟