题解 1210: 小明A+B

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

筛选

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

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

小明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……

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

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

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

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

1210: 小明A+B

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

1210: 小明A+B(取余)

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