题解

1330 条题解

  • 0
    @ 2009-02-18 18:16:59

    program Plus;

    var a,b:longint;

    begin

    readln(a,b);

    writeln(a+b);

    end.

  • 0
    @ 2009-02-13 21:05:59

    #include

    using namespace std;

    void main

    {

    int a,b;

    cin>>a>>b;

    cout

  • 0
    @ 2009-02-11 08:37:12

    #include

    using namespace std;

    int main()

    {

    int a,b;

    cin>>a>>b;

    cout

  • 0
    @ 2009-02-07 16:40:24

    program kk;

    var

    a,b:integer;

    c:integer;

    begin

    read(a,b);

    c:=a+b.

    write(c);

    end.

  • 0
    @ 2009-02-06 19:05:31

    #include

    main()

    {

    int y;

    long x,num;

    scanf("%d%d",&x,&y);

    num=x+y;

    printf("%d",num);

    }

  • 0
    @ 2009-02-06 09:04:23

    编译通过...

    ├ 测试数据 01:答案正确... 0ms

    ├ 测试数据 02:答案正确... 0ms

    ├ 测试数据 03:答案正确... 0ms

    ├ 测试数据 04:答案正确... 0ms

    ├ 测试数据 05:答案正确... 0ms

    ├ 测试数据 06:答案正确... 0ms

    ├ 测试数据 07:答案正确... 0ms

    ├ 测试数据 08:答案正确... 0ms

    ├ 测试数据 09:答案正确... 0ms

    ├ 测试数据 10:答案正确... 0ms

    ---|---|---|---|---|---|---|---|-

    Accepted 有效得分:100 有效耗时:0ms

    太强了

  • 0
    @ 2009-02-05 16:18:41

    program plus;

    var

    a,b:longint;

    begin

    readln(a,b);

    writeln(a+b);

    end.

  • 0
    @ 2009-02-05 09:29:39

    此题实质上非常复杂 全面考察到了数学史和计算机史 经典代数 常用计算与输入输出等等等等知识点

    考虑到题目的所有可能性 我们应当从计算机存储的二进制的角度来逐步考虑数的表示 以字节计数,采用多字节合用的方式表示一个大整数如今已经是高级程序语言编译器轻松可以达到的目标 可是为了加强对计算机计数的了解 此题可以考虑仍以最原始的方式进行计算——并且考虑最终将二进制数转变为十进制输出的全部过程 期间还考察了对ASCII码的熟悉程度

    此题实在经典 乃居家旅行必备之良题

  • 0
    @ 2009-03-02 20:58:29

    编译通过...

    ├ 测试数据 01:答案错误... ├ 标准行输出 45652

     ├ 错误行输出 45743

    ├ 测试数据 02:答案正确... 0ms

    ├ 测试数据 03:答案正确... 0ms

    ├ 测试数据 04:答案正确... 0ms

    ├ 测试数据 05:答案正确... 0ms

    ├ 测试数据 06:答案正确... 0ms

    ├ 测试数据 07:答案正确... 0ms

    ├ 测试数据 08:答案正确... 0ms

    ├ 测试数据 09:答案正确... 0ms

    ├ 测试数据 10:答案正确... 0ms

    ---|---|---|---|---|---|---|---|-

    Unaccepted 有效得分:90 有效耗时:0ms

    记录

  • 0
    @ 2009-01-27 22:42:04

    为什么我最近觉得口渴?因为我很久没有做这道题了……水是生命之源……1st

  • 0
    @ 2009-01-26 15:06:16

    #include "stdio.h"

    main()

    {

    int a,b;

    scanf ("%d%d",&a,&b);

    a+=b;

    printf ("%d",a);

    }

  • 0
    @ 2009-01-24 13:27:48

    我们的OI生涯从这道题的AC开始!

  • 0
    @ 2009-10-12 00:01:06

    编译通过...

    ├ 测试数据 01:答案正确... 0ms

    ├ 测试数据 02:答案正确... 0ms

    ├ 测试数据 03:答案正确... 0ms

    ├ 测试数据 04:答案正确... 0ms

    ├ 测试数据 05:答案正确... 0ms

    ├ 测试数据 06:答案正确... 0ms

    ├ 测试数据 07:答案正确... 0ms

    ├ 测试数据 08:答案正确... 0ms

    ├ 测试数据 09:答案正确... 0ms

    ├ 测试数据 10:答案正确... 0ms

    ---|---|---|---|---|---|---|---|-

    Accepted 有效得分:100 有效耗时:0ms

  • 0
    @ 2009-01-19 08:06:17

    哈哈



    |

    |

    |

    -===+=====_/(T)\=====+===-

    | |/.| |

    `-|\
    /|-'

  • 0
    @ 2009-01-18 10:43:06

    草,

    什么鸟

    垃圾vijos

    我草你老母

    滚滚滚滚滚滚滚滚滚滚滚滚滚滚

    vijos

    去死吧

  • 0
    @ 2009-01-18 09:38:30

    #include "stdio.h"

    {

    int a,b;

    scanf ("%d%d",&a,&b);

    a+=b;

    printf ("%d",a);

    }

  • 0
    @ 2009-01-18 08:39:03

    #include

    using namespace std;

    int main()

    {

    int a,b,c;

    cin>>a,b

    c=a+b

    cout

  • 0
    @ 2009-01-16 17:14:52

    program a+b;

    var a,b,c:longint;

    read(a);

    read(b);

    c:=a+b;

    write(c);

    end.

  • 0
    @ 2009-01-15 13:48:38

    通过率真变态啊!!!!-_-'

  • 0
    @ 2009-01-13 17:25:16

    ...

信息

ID
1000
难度
9
分类
(无)
标签
(无)
递交数
75235
已通过
28778
通过率
38%
被复制
265