题解 1085: A+B for Input-Output Practice (I)

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

筛选

A+B for Input-Output Practice (I)-题解(C++代码)

摘要:解题思路:        为避免题目可能的一些坑(比如输入数字大于int表示的范围),特地使用了long long int注意事项:        #define 语句 可以 将代码中 LL 换成 l……

A+B from beiqiao(C++)

摘要:#include<iostream> using namespace std; int main() {     int a,b;     while(cin>>a>>b)    //编译器……

A+B for Input-Output Practice (I) 题解

摘要:解题思路:不就是加法嘛!弄了个英文就不会了?注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a,b;int main(){    ……

A+B for Input-Output Practice (I)

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

A+B for Input-Output Practice (I) (C++代码)

摘要:解题思路:直接点提交就好了hhhhhhhh注意事项:这还要注意点什么,,大哥,你就别自己改了好吧。。参考代码:#include<iostream> using namespace std; int……