题解 1267: A+B Problem

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

筛选

这么简单的题还属于中档题?

摘要:解题思路:基本操作注意事项:这有什么注意的,直接五星好评参考代码:#include<stdio.h>int main(){    int a,b;    scanf("%d %d",&a,&b);  ……

编写题解 1267: A+B Problem

摘要:解题思路:设定一个整数“a”和“b”参考代码:#includeusing namespace std;int main(){    int a;    int b;    cin>>a>>b;    ……

1267: A+B Problem

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

【Java】计算两个数的和

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main {    public static void main(String[]args)……

A+B python题解

摘要:解题思路:注意事项:参考代码:a,b = map(int,input().split())print(a+b)//说什么内容字数太少,本来以为会考什么数字太长需要用到数组啥的,没想到这么简单……

(Python)使用split()方法分隔两个加数

摘要:split()方法能指定以某种字符串将分隔符对字符串进行切片,返回包含所有切片的列表 [关于split()方法的介绍](https://www.runoob.com/python/att-strin……

题解 1267: A+B Problem

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {……

1267: A+B Problem

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

A+B Problem(python)

摘要:解题思路:这题很简单,用map()函数输入两个值再直接相加即可注意事项:参考代码:x,y=map(int,input().split())print(x+y)……

题解 1267: A+B Problem

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