1328 条题解
-
0
lixiaomu2 LV 8 @ 2009-08-06 19:30:32
农夫山泉
-
02009-08-05 18:56:24@
var
a,b:integer;
begin
read(a,b);
write(a+b);
end. -
02009-08-05 09:45:22@
{ Copyright (c) 2009 by Xunrui }
program Applicaation;
var
Value1, Value2: Integer;begin
Readln(Value1, Value2);
Writeln(Value1 + Value2);
end.来个一行的:
{ Copyright (c) 2009 by Xunrui }program Applicaation; var Value1, Value2: Integer; begin Readln(Value1, Value2); Writeln(Value1 + Value2); end.
-
02009-08-04 22:48:02@
program ez22:
var x,y:integer;
begin
readln(x,y);
writeln(x+y);
end. -
02009-08-03 18:40:59@
啊哦...
-
02009-08-03 17:49:40@
如对本题有疑问可以参看我的题解:http://xujieqi.blog.hexun.com/35722312_d.html
-
02009-08-03 16:08:18@
var x,y,z:longint;
begin
readln(x,y);
n:=x+y;
writeln(n);
end. -
02009-08-03 16:06:59@
var i,j,k:longint;
begin
readln(i,j);
k:=i+j;
writeln(k);
end. -
02009-08-03 16:05:01@
program gd;
var x,y:integer;
begin
read(x,y);
write(x+y);
end. -
02009-08-03 16:03:54@
var x,y:integer;
begin
readln(x,y);
writeln(x+y);
end; -
02009-08-03 16:00:08@
var x,y,n:longint;
begin
readln(x,y);
n:=x+y;
writeln(n);
end. -
02009-08-03 15:59:47@
var x,y:longint;
begin
readln(x,y);
writeln(x+y);
end. -
02009-08-03 14:24:14@
开始
读入两个变量;
输出(第一变量加第二变量)
结束 -
02009-08-03 12:14:50@
#include
using namespace std;
int main(){
int a,b;
cin>>a>>b;
cout -
02009-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 -
02009-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
#includenamespace 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 -
02009-07-31 17:11:22@
#include
using namespace std;
int main(){
int a,b;
cin>>a>>b;
cout -
02009-07-31 08:53:44@
var a,b,c:longint;
begin
read(a,b);
c:=a+b;
write(c);
end. -
02009-07-30 13:27:19@
program sum;
var
x,y,z:integer;
begin
read(x,y);
z:=x+y;
write(z)
end. -
02009-07-28 22:32:19@
.....无语
信息
- ID
- 1000
- 难度
- 9
- 分类
- (无)
- 标签
- (无)
- 递交数
- 74849
- 已通过
- 28666
- 通过率
- 38%
- 被复制
- 253