题解 1267: A+B Problem

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

筛选

P1000-题解(C++代码)

摘要:这个 就是 a+b咯 读入a+b 然后输出a+b ```cpp #include using namespace std; int main() { long lo……

P1000 题解(c++简单)

摘要:解题思路:不就是加法嘛,还不会!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int x,y;int main(){ scanf("%d……

编写题解 1267: A+B Problem

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int a,b;    scanf("%d%d", &a, &b);    printf("%d\n",a……

简单易懂a+b

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

编写题解 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……

题解 1267: A+B Problem

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

题解 1267: A+B Problem

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

简单,易懂

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int x,y,sum;    scanf ("%d %d",&x,&y);    sum=x+y;   ……