题解 1586: 蓝桥杯算法训练VIP-A+B problem

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

筛选

蓝桥杯算法训练VIP-A+B problem

摘要:解题思路:比较简单。注意事项:这个要注意使用long型,用int型编译错误参考代码:#include<stdio.h>int main(){     long a,b,c;     scanf("%l……

蓝桥杯算法训练VIP-A+B problem

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

小南解题--A+B problem--49ms

摘要:#太简单所以发不出去请允许我废话一下代码请见以下:a,b =map(int,input().split())print(a+b)……

1586这题在逗我C语言

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