题解 1267: A+B Problem

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

筛选

P1000 (C语言代码)

摘要:解题思路:注意事项:参考代码:/*输入两个自然数,输出他们的和  */#include <stdio.h>int main(){ int a,b; scanf("%d%d",&a,&b); print……

P1000......21888545

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

1267:A+B Problem

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

编写题解 1267: A+B Problem

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

1267题解(刷几眼)

摘要:解题思路:1注意事项:1参考代码:int a,b ;    cin>>a>>b ;    cout<<a+b<<endl;……

1267: A+B Problem(c++)题解

摘要:写这篇题解完全是消磨时间 代码 ```cpp #include using namespace std; int main() { int a,b; while(cin……

c++解题思路

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