0

任何人都知道如何做到这一点?:

say 'something'
or 
say 'something'
or 
say 'something'

我想在这些说命令之间随机选择。怎么做?

4

2 回答 2

2
/* REXX */    
x = RANDOM(1,3)
       Select
         when x = 1 then
            say 'something'
         when x = 2 then do
            say 'something'
         Otherwise
            say 'something'
       end  /* Select */
 Pull answer .
 if answer='NO' then say 'Answer is NO.'
于 2012-11-17T22:22:08.400 回答
0

我建议使用Random函数和Select语句。

于 2012-11-17T14:52:33.867 回答