题解 1000: [竞赛入门]简单的a+b

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

筛选

java--study||O.o

摘要:参考代码:import java.util.*; public class Main{     public static void main(String[] args){        ……

[竞赛入门]简单的a+b(C++)

摘要:解题思路:定义a,b,输入各值,输出a+b就可以了注意事项:参考代码:#include<iostream>using namespace std;int main(){    int a,b;    ……

Java简单的a+b

摘要:Scanner sc=new Scanner(System.in); while(sc.hasNext()){ int a=sc.nextInt(); int b=sc.nextInt(); ……

简单的a+b (C语言代码)

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

佷简单,C++代码

摘要:参考代码:#include<iostream>using namespace std;int main(){    int a,b;    while(cin>>a>>b)cout<<(a+b)<<e……

a+b简单写法

摘要:解题思路:用if限定范围不超过2^10,或者排除2^10之外的数,然后进行简单的加减注意事项:参考代码:#include<stdio.h>int main(){    int a,b;    whil……

详细解释,成为高手第一步

摘要:解题思路:注意事项:参考代码:#include <stdio.h>  //这是引入标准输入输出库,因为我们要使用 scanf 和 printf 函数。int main() {             ……