题解 1000: [竞赛入门]简单的a+b

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

筛选

note an easy problem2

摘要:哈哈哈#includeint main(){    int strcpy_my(int n, char c[], int m);    int n, m;    char a[100];    sca……

1000: [竞赛入门]简单的a+b

摘要:解题思路:用while循环输出a+b注意事项:别选错语言参考代码:#include<iostream> using namespace std; int main() {     int a,……

简单的a+b(C语言代码)

摘要:解题思路:注意事项:~是按位取反参考代码:#include<stdio.h>int main(){    int a,b;    while(~scanf("%d %d",&a,&b))    {  ……

[竞赛入门]简单的a+b

摘要:解题思路:#include<iostream>using namespace std;int main(){    int a,b;    while(cin>>a>>b)    {     cout……