Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
誰でもこれを行う方法を知っていますか?:
say 'something' or say 'something' or say 'something'
これらの say コマンドからランダムに選択したいと思います。どうやってするか?
/* 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.'
Random関数とSelectステートメントを使用することをお勧めします。