题解

1323 条题解

  • 0
    @ 2009-08-03 18:40:59

    啊哦...

  • 0
    @ 2009-08-03 17:49:40

    如对本题有疑问可以参看我的题解:http://xujieqi.blog.hexun.com/35722312_d.html

  • 0
    @ 2009-08-03 16:08:18

    var x,y,z:longint;

    begin

    readln(x,y);

    n:=x+y;

    writeln(n);

    end.

  • 0
    @ 2009-08-03 16:06:59

    var i,j,k:longint;

    begin

    readln(i,j);

    k:=i+j;

    writeln(k);

    end.

  • 0
    @ 2009-08-03 16:05:01

    program gd;

    var x,y:integer;

    begin

    read(x,y);

    write(x+y);

    end.

  • 0
    @ 2009-08-03 16:03:54

    var x,y:integer;

    begin

    readln(x,y);

    writeln(x+y);

    end;

  • 0
    @ 2009-08-03 16:00:08

    var x,y,n:longint;

    begin

    readln(x,y);

    n:=x+y;

    writeln(n);

    end.

  • 0
    @ 2009-08-03 15:59:47

    var x,y:longint;

    begin

    readln(x,y);

    writeln(x+y);

    end.

  • 0
    @ 2009-08-03 14:24:14

    开始

    读入两个变量;

    输出(第一变量加第二变量)

    结束

  • 0
    @ 2009-08-03 12:14:50

    #include

    using namespace std;

    int main(){

    int a,b;

    cin>>a>>b;

    cout

  • 0
    @ 2009-08-02 16:59:10

    编译通过...

    ├ 测试数据 01:Vivid Puppy评测机故障... 32723ms

    ├ 测试数据 02:Vivid Puppy评测机修理中... 34223ms

    ├ 测试数据 03:选择其他机器... 3999ms

    ├ 测试数据 04:Vijos Dragon评测机启动... 1234ms

    ├ 测试数据 05:紫田漯河双线机房跳电... 1ms

    ├ 测试数据 06:Vijos Dragon评测机硬件故障... 32323ms

    ├ 测试数据 07:Vijos Dragon评测机修理中... 32201ms

    ├ 测试数据 08:Vag 6K评测机启动...4321ms

    ├ 测试数据 09:Vag 6K评测机安装Free Pascal IDE中... 429421ms

    ├ 测试数据 10:Vag 6K评测机故障... 142ms

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

    unaccepted 有效得分:0 有效耗时:560588ms

  • 0
    @ 2009-08-17 09:43:44

    // Standard iostream objects -*- C++ -*-

    // Copyright (C) 1997, 1998, 1999, 2001, 2002 Free Software Foundation, Inc.

    //

    // This file is part of the GNU ISO C++ Library. This library is free

    // software; you can redistribute it and/or modify it under the

    // terms of the GNU General Public License as published by the

    // Free Software Foundation; either version 2, or (at your option)

    // any later version.

    // This library is distributed in the hope that it will be useful,

    // but WITHOUT ANY WARRANTY; without even the implied warranty of

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the

    // GNU General Public License for more details.

    // You should have received a copy of the GNU General Public License along

    // with this library; see the file COPYING. If not, write to the Free

    // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,

    // USA.

    // As a special exception, you may use this file as part of a free software

    // library without restriction. Specifically, if other files instantiate

    // templates or use macros or inline functions from this file, or you compile

    // this file and link it with other files to produce an executable, this

    // file does not by itself cause the resulting executable to be covered by

    // the GNU General Public License. This exception does not however

    // invalidate any other reasons why the executable file might be covered by

    // the GNU General Public License.

    //

    // ISO C++ 14882: 27.3 Standard iostream objects

    //

    /** @file iostream

    * This is a Standard C++ Library header. You should @c #include this header

    * in your programs, rather than any of the "st[dl]_*.h" implementation files.

    */

    #ifndef _GLIBCXX_IOSTREAM

    #define _GLIBCXX_IOSTREAM 1

    #pragma GCC system_header

    #include

    #include

    namespace std

    {

    /**

    * @name Standard Stream Objects

    *

    * The header declares the eight standard stream

    * objects. For other declarations, see

    * http://gcc.gnu.org/onlinedocs/libstdc++/27_io/howto.html#10 and the

    * @link s27_2_iosfwd I/O forward declarations @endlink

    *

    * They are required by default to cooperate with the global C library's

    * @c FILE streams, and to be available during program startup and

    * termination. For more information, see the HOWTO linked to above.

    */

    //@{

    extern istream cin; ///< Linked to standard input

    extern ostream cout; ///< Linked to standard output

    extern ostream cerr; ///< Linked to standard error (unbuffered)

    extern ostream clog; ///< Linked to standard error (buffered)

    #ifdef _GLIBCXX_USE_WCHAR_T

    extern wistream wcin; ///< Linked to standard input

    extern wostream wcout; ///< Linked to standard output

    extern wostream wcerr; ///< Linked to standard error (unbuffered)

    extern wostream wclog; ///< Linked to standard error (buffered)

    #endif

    //@}

    // For construction of filebuffers for cout, cin, cerr, clog et. al.

    static ios_base::Init __ioinit;

    } // namespace std

    #endif /* _GLIBCXX_IOSTREAM */

    using namespace std;

    int main()

    {

    int a,b;

    cin>>a>>b;

    cout

  • 0
    @ 2009-07-31 17:11:22

    #include

    using namespace std;

    int main(){

    int a,b;

    cin>>a>>b;

    cout

  • 0
    @ 2009-07-31 08:53:44

    var a,b,c:longint;

    begin

    read(a,b);

    c:=a+b;

    write(c);

    end.

  • 0
    @ 2009-07-30 13:27:19

    program sum;

    var

    x,y,z:integer;

    begin

    read(x,y);

    z:=x+y;

    write(z)

    end.

  • 0
    @ 2009-07-28 22:32:19

    .....无语

  • 0
    @ 2009-07-28 19:36:46

    program exam1;

    var a,b,c:integer;

    begin

    read(a,b);

    c:=a+b;

    write(c);

    end.

  • 0
    @ 2009-07-27 09:15:07

    var a,b:longint;

    begin

    readln(a,b);

    writeln(a+b);

    end.

    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

    这种做法是极其不可取的……

  • 0
    @ 2009-07-26 23:10:10

    #include

    int main(void)

    {

    int a,b,c;

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

    printf("a+b=%d",a+b");

    return 0;

    }

  • 0
    @ 2009-07-26 22:21:47

    娃哈哈呀娃哈哈呀,每个人脸上都笑开颜.....

    用random然后打表.......

    编译通过...

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

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

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

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

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

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

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

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

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

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

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

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

信息

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