题解 1210: 小明A+B

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

小明A+B(简单易懂)

摘要:解题思路:对于每一组测试数据,最好先将两个加数相加然后对于100求余,就不难得到输出结果了。注意事项:参考代码:#include<stdio.h>int main(){    int n; int a……

小明A+B (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main()  { int M,A,B; scanf("%d",&M); while(M--) { sc……

编写题解 1210: 小明A+B

摘要:解题思路:注意事项:参考代码:#include <math.h> #include <stdio.h> int main(void) {   //输入数据的第一行为一个正整数T, 表示测试数据的……

小明A+B-题解(C语言代码)

摘要:#include #include #include #include //为了写程序方便,添加了许多库函数 int main() { int a,b,c,d,e; scanf("……

最普通的解题方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int n,a,b,c=0,d=0,e=0;    scanf("%d",&n);    while(n)……

小明A+B (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main() {    int t;    scanf("%d", &t);    int a[t][2], b[t], i,……