题解 1210: 小明A+B

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

筛选

小明A+B(简单易懂)

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

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

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int a,b; int n; cin>>n;……

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

摘要:取出数字后两位的方法是把这个数跟100取模 看看规律 如果一个数大于100,比如1234,1234%100=34 如果一个数小于100,比如98,98%100=98 **可以看出如果一个数大于……

编写题解 1210: 小明A+B

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){    int a,b;        ……

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

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

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

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

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

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