【输入】SSL_1238 小X的加法难题
程序员文章站
2022-03-14 19:39:56
...
题意
给出一个字符串,里面有两个数和,求出它们的和,如果超过,输出(字符串中间有些空格)。
思路
用快速输入输出,在里面判断一下空格。
代码
#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);
}
上一篇: UVA - 202 Repeating Decimals
下一篇: UVA-489