文章目录
- 题目
- 题面翻译
- 输入格式
- 输出格式
- 题目描述
- 输入格式
- 输出格式
- 样例 #1
- 样例输入 #1
- 样例输出 #1
- 思路
- AC代码
题目
题面翻译
有一个算式 a + b a{+}b a+b , a a a 、 b b b 都是一位数。你需要输出这个算式的答案。
输入格式
第一行,一个整数 t t t ( 1 ≤ t ≤ 100 1\le t\le100 1≤t≤100 ) 表示输入的算式个数。
下面 t t t 行,每行一个 a + b a{+}b a+b 的算式,注意加号旁边没有空格。( 0 ≤ a , b ≤ 9 0\le a,b\le9 0≤a,b≤9, a a a 和 b b b 都是整数 )
输出格式
对于每个算式,输出这个算式的结果。
题目描述
You are given an expression of the form a + b a{+}b a+b , where a a a and b b b are integers from 0 0 0 to 9 9 9 . You have to evaluate it and print the result.
输入格式
The first line contains one integer t t t ( 1 ≤ t ≤ 100 1 \le t \le 100 1≤t≤100 ) — the number of test cases.
Each test case consists of one line containing an expression of the form a + b a{+}b a+b ( 0 ≤ a , b ≤ 9 0 \le a, b \le 9 0≤a,b≤9 , both a a a and b b b are integers). The integers are not separated from the + + + sign.
输出格式
For each test case, print one integer — the result of the expression.
样例 #1
样例输入 #1
4
4+2
0+0
3+7
8+9
样例输出 #1
6
0
10
17
思路
循环 1 1 1~ n n n,直接输入输出就好了(
AC代码
#include <bits/stdc++.h>
using namespace std;
int main(){int t,a,b;char c;scanf("%d",&t);while(t--){scanf("%d%c%d",&a,&c,&b);printf("%d\n",a+b);}return 0;
}