help @language:simplified_chinese 无限随机打印字符,慢速。 @end endh citingspace my_test function Unlimited_print() do variable d=0,a=rand() do d=d+1 print("*") sleep(20) until d==round(a*(10**1))+1 print("\n") until 1==0 endf
打印随机数。 //无限打印一个字符串,慢速。 help @language:simplified_chinese 无限打印字符,慢速。 @end endh citingspace my_test function Unlimited_print() do variable d=0,a=rand() do d=d+1 print(round(rand()*(10**1))) sleep(20) until d==round(a*(10**1))+1 print("\n") until 1==0 endf
help @language:simplified_chinese 有限打印字符,慢速。 @end endh citingspace my_test function Unlimited_print() variable c=0 do variable d=0,a=rand() c=c+1 do d=d+1 print(round(rand()*(10**1))) sleep(20) until d==round(a*(10**1))+1 print("\n") until c==20 endf