题解 1267: A+B Problem

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

筛选

编写题解 1267: A+B Problem

摘要:解题思路:1、创建变量a,b2、输入变量3、输出a+b参考代码:#include<iostream> int main (){     int a,b;     cin>>a>>b;     ……

题解:1267: A+B Problem

摘要:解题思路:注意事项:不要打错参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<……

编写题解 1267: A+B Problem

摘要:import java.util.*;public class Main {    public static void main(String [] args){        Scanner sc……