代码搜索:Write
找到约 10,000 项符合「Write」的源代码
代码结果 10,000
www.eeworm.com/read/239373/13283208
pl test2.pl
var a,b,c;
begin
read(a,b,c);
if a>0 then write(b) else write(c);
write(a,b,c);
end.
www.eeworm.com/read/137304/13331665
t aaa.t
{
int a;
int b;
read a;
write a;
if (a==10) b=1; else b=2;
write b;
while (a
www.eeworm.com/read/322321/13382584
pl test2.pl
var a,b,c;
begin
read(a,b,c);
if a>0 then write(b) else write(c);
write(a,b,c);
end.
www.eeworm.com/read/321588/13402901
pl0 +=.pl0
PROGRAM MAIN;
VAR A;
BEGIN
A:=1;
A+=1;
WRITE(A);
A-=1;
WRITE(A)
END.
www.eeworm.com/read/321185/13411093
1 isp-at89.1
.\" hey, Emacs: -*- nroff -*-
.\" pbbuttons is free software; you can redistribute it and/or modify
.\" it under the terms of the GNU General Public License as published
www.eeworm.com/read/314719/13560289
pl0 e02.pl0
var d,b,c;
begin
read(d);
read(b);
if db then
write(0)
else
write(1)
end.
www.eeworm.com/read/314719/13560298
pl0 neq1.pl0
var i,j;
begin
read(i);
read(j);
if ij then
write(1)
else
write(0)
end.