代码搜索:statement
找到约 10,000 项符合「statement」的源代码
代码结果 10,000
www.eeworm.com/read/358128/3005050
test multi_statement.test
# PS doesn't support multi-statements
--disable_ps_protocol
--disable_warnings
DROP TABLE IF EXISTS t1;
--enable_warnings
select 1;
delimiter ||||;
select 2;
select 3;
select 4||||
delimiter 'abcd'|
www.eeworm.com/read/294030/8257310
txt test statement.txt
$i+i*i$ //recognize
$i+i$ //recognize
$i+i*i+i$ //recognize
$i@i@i+i*i$ //recognize
$i$ //recognize
$i+i+i+i+i+i$ //recognize
$i@i@i@i*i*i$ //recogniz
www.eeworm.com/read/368299/9702525
py while_statement.py
numRocketsToFire = 3
rocketCount = 0
while rocketCount < numRocketsToFire:
# Increase the rocket counter by one
rocketCount = rocketCount + 1
print "Firing rocket #" + str( rocketCo
www.eeworm.com/read/368299/9702528
py for_break_statement.py
numbers = [100, 25, 125, 50, 150, 75, 175]
for x in numbers:
print x
# As soon as we find 50 - stop the search!
if x == 50:
print "Found It!"
break;
raw_input( "
www.eeworm.com/read/368299/9702543
py for_continue_statement.py
numbers = [100, 25, 125, 50, 150, 75, 175]
for x in numbers:
# Skip all triple digit numbers
if x >= 100:
continue;
print x
raw_input( "\nPress Enter to exit..." )
www.eeworm.com/read/247529/12652417
doc problem statement.doc
www.eeworm.com/read/103770/15721716