题解 1210: 小明A+B

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

筛选

最普通的解题方法

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

小明今年三岁啦

摘要:解题思路:保留计算结果的两位就是利用%100求余(a+b)的和注意事项:参考代码:#include int main() { int T; int a,b; scanf("%d",&T); ……

1210: 小明A+B(简单解法)

摘要:解题思路:对于小于100的数,对100取余得它本身对于大于100的数,对100取余得后两位参考代码:#include<stdio.h> int main(){ int c,i,n,a,b; sc……

编写题解 1210: 小明A+B

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

小明A+B(简单易懂)

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

1210: 小明A+B(取余)

摘要:解题思路:对于小于100的数,对100取余得它本身对于大于100的数,对100取余得后两位参考代码:#include <stdio.h> int main()  { int i; in……

1210: 小明A+B

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

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

摘要:#### 解题思路(字符串思路): 解读题目得到原始题意: 输入两个非负整数A,B 求A+B 的和然后输出结果的最后两位数的值。 如何输出结果的最后两位的值:……