1329 条题解
- 
  0
asd496169162 LV 3 @ 2008-09-21 18:47:25
#include
int main ()
{
int a,b,c;
scanf("%d,%d"a,b);
c=a+b;
prinft("%d\n",c);
} - 
  0@ 2008-09-21 17:19:21
这题要是不能AC 基本可以去撞墙了...~~~
 - 
  0@ 2008-09-17 16:33:42
#include
#include
#include
using namespace std;
int main()
{
float a, b,c;
scanf("%f,%f",&a,&b);
c=a+b;
printf("a+b=%f",c);
return 0;
} - 
  0@ 2008-09-17 16:33:37
#include
#include
#include
using namespace std;
int main()
{
float a,b,c;
scanf("%f%f",&a,&b);
c=a+b;
printf("%f\n",c);
return 0;
} - 
  0@ 2008-09-17 15:56:05
我AC了,邺,太帅了,要标程的CALL ME
 - 
  0@ 2008-09-16 17:34:36
PROGRAM SH;
VAR
x,y:integer;
begin
read(x,y);
writeln(x+y);
end. - 
  0@ 2008-09-16 17:32:49
Program a+b;
var
a,b:integer;
begin
readln(a,b);
writeln(a+b);
end. - 
  0@ 2008-09-17 12:51:41
?!?!?!?!?!?!?!
 - 
  0@ 2008-09-15 08:03:15
program kid;
var
a,b:integer;
begin
read(a,b);
b:=a+b;
write(b);
end. - 
  0@ 2008-09-13 15:47:13
var
a,b:integer;
begin
read(a,b);
a:=a+b;
write(a);
end; - 
  0@ 2008-09-12 16:53:17
...!!!?
...!!!?
 - 
  0@ 2008-09-11 16:47:51
var a,b:integer;
begin
readln(a,b);
writeln(a+b);
end; - 
  0@ 2008-09-10 20:52:33
59%的通过率,没话说。。。。
 - 
  0@ 2008-09-10 17:38:36
#include
int main(){
int a,b;
scanf("%d%d",&a,&b);
printf("%d",a+b);
return 0;
} - 
  0@ 2008-09-09 20:06:46
var a,b:longint'
begin
read(a,b);
write(a+b);
end. - 
  0@ 2008-09-07 19:47:27
我建议把这道题用来测试评测机是否有问题!
 - 
  0@ 2008-09-07 17:21:33
第一道通过的题!
 - 
  0@ 2008-09-07 09:57:13
pogram examl;
var a,b,c:integer;
begin
readln(a,b);
c:=a+b;
writeln(c);
end. - 
  0@ 2008-09-06 20:19:53
program ch1;
var a,b:longint;
begin
write('a=');
readln(a);
write('b=');
readln(b);
writeln('a+b=',a+b);
readln
end. - 
  0@ 2008-09-06 22:02:16
program Plus;
var a,b:longint;
begin
readln(a,b);
writeln(a+b);
end. 
信息
- ID
 - 1000
 - 难度
 - 9
 - 分类
 - (无)
 - 标签
 - (无)
 - 递交数
 - 75095
 - 已通过
 - 28724
 - 通过率
 - 38%
 - 被复制
 - 261