好难啊

P1001 A+B Problem

建议看下hzwer上面黄学长的做法。到那种程度再来秀最好。
by LouisXVI @ 2017-01-17 07:12:11


http://hzwer.com/1523.html 这是链接。
by LouisXVI @ 2017-01-17 07:19:28


```cpp var a,b:longint; begin readln(a,b); writeln(a+b); end. 满分Pascal答案 ```
by 杨志远20050725 @ 2017-01-17 09:12:41


```cpp #include <iostream> using namespace std; int main(){ int a,b; cin>>a>>b; cout<<a+b; return 0; }//用cout直接输出 ```
by kc20041109 @ 2017-01-21 16:23:07


好难啊(这应该是反语)
by fy2333 @ 2017-01-22 08:50:08


```cpp #include<iostream> using namespace std; int main(){ int a,b; cin>>a>>b; cout<<a+b<<<<endl; return 0; } ```
by 回望今宵 @ 2017-01-23 12:17:34


@[LouisXVI](/space/show?uid=11960) 有什么特别高深的技巧吗?
by rushcheyo @ 2017-01-23 19:51:16


```cpp #include<cstdio> using namespace std; int a,b; int main() { scanf("%d %d",&a,&b); printf("%d",a+b); } ``` C语言 输入俩数 两数相加 输出和 ```cpp #include<iostream> using namespace std; int a,b; int main() { cin>>a>>b; cout<<a+b; } ``` C++语言 输入俩数 两数相加 输出和 ```cpp var a,b:int; begin readln(a,b); writeln(a+b); end. Pascal语言 ```
by Patchouli_Nine @ 2017-01-24 11:47:47


```cpp program nn; var a,s:longint; begin read(a,s); write(a+s); end. ```
by wzx20061006 @ 2017-02-02 19:54:30


不就用a+s求的吗!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
by wzx20061006 @ 2017-02-02 19:56:41


| 下一页