题解 1210: 小明A+B

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

筛选

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

摘要:解题思路:注意事项:参考代码:#include <iostream>#include <deque>#include <algorithm>#include <numeric>#include <it……

最普通的解题方法

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

小明A+B---抽象JAVA

摘要:解题思路:字符串截取注意事项:参考代码:import java.util.*;public class Main { public static void main(String[] args) {S……

编写题解 1210: 小明A+B

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

挺简单的一个题

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

编写题解 1210: 小明A+B

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

小明A+B(简单易懂)

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