题解

1323 条题解

  • 0
    @ 2009-03-07 11:06:55

    #include

    void main(){

    double x=0,y=0;

    scanf("%d", x);

    scanf("%d", y)

    printf("%d", x + y);

    }

  • 0
    @ 2009-03-04 17:55:11

    program j;

    var

    a,b,c:integer;

    begin

    read (a,b);

    c:=a+b;

    write(c)

    end.

  • 0
    @ 2009-03-03 16:34:58

    program j;

    var

    a,b,c:integer;

    begin

    read (a,b);

    c:=a+b;

    write(c)

    end.

  • 0
    @ 2009-02-26 23:13:38

    #include

    using namespace std;

    int main()

    {

    int a, b;

    cin >> a >> b;

    cout

  • 0
    @ 2009-02-25 22:38:39

    #include

    void main(){

    double x=0,y=0;

    cin>>x;

    cin>>y;

    cout

  • 0
    @ 2009-02-24 19:50:31

    program luciferoo;

    var a,b:integer;

    begin

    readln(a,b);

    writeln(a+b);

    end.

  • 0
    @ 2009-02-23 00:26:40

    program lx5;

    var a,b:longinteger;

    begin

    readln(a,b);

    writeln (a+b);

    end.

  • 0
    @ 2009-02-22 18:51:55

    编译通过...

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

    ├ 测试数据 02:答案好像正确... 999ms

    ├ 测试数据 03:答案似乎正确... 999ms

    ├ 测试数据 04:答案可能正确... 999ms

    ├ 测试数据 05:答案不能确定... 999ms

    ├ 测试数据 06:无答案... 999ms

    ├ 测试数据 07:运行超时... 999ms

    ├ 测试数据 08:答案失眠... 999ms

    ├ 测试数据 09:答案休息中... 999ms

    ├ 测试数据 10:答案不存在... 999ms

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

    不能确定 有效得分:0 有效耗时:999牌感冒灵ms

  • 0
    @ 2009-02-20 21:56:01

    program kk;

    var

    x,y,z:integer;

    begin

    readln(x,y);

    z:=x+y;

    write(x);

    end.

  • 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);

    }

信息

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