代码搜索:Write
找到约 10,000 项符合「Write」的源代码
代码结果 10,000
www.eeworm.com/read/401452/11557575
txt if-then-else.txt
var a,b,c;
begin
read(a,b,c);
if a>0 then write(b) else write(c);
end.
www.eeworm.com/read/401452/11557576
txt array.txt
const c=3;
var b(2:c);
begin
read(b(3));
write(b(3));
end.
www.eeworm.com/read/401452/11557578
txt array-error.txt
const c=3;
var b(2:c);
begin
read(b(1));
read(b(3));
write(b(2));
write(b(3));
end.
www.eeworm.com/read/157641/11679607
txt counter.txt
Something to write to the file
Something to write to the file
lllll
welcom!
welcome!
welcome!
welcome!
welcome!
welcome!
welcome!
www.eeworm.com/read/157511/11698031
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/260589/11717651
c nand_base.c
/*
* drivers/mtd/nand.c
*
* Overview:
* This is the generic MTD driver for NAND flash devices. It should be
* capable of working with almost all NAND chips currently available.
* Basic s
www.eeworm.com/read/258562/11855003
f90 ex0401.f90
program main
write(*,*) "Hello"
stop
end program main