题解 1210: 小明A+B

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

筛选

题目 1210: 小明A+B

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct B{ int a1; int a2; };int main(){ in……

1210: 小明A+B

摘要:```cpp #include using namespace std; int main() { int t,a,b; cin>>t; for(int i=1;……

挺简单的一个题

摘要:解题思路:注意事项:参考代码:#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 (C++代码)

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