LOTUSSCRIPT 言語
Dim howLong As Single, howManyBeeps As Integer Function HowManyTimes (howLong As Single) As Integer Dim start As Single, finish As Single, counter As Integer start!= Timer finish!= start!+ howLong! While Timer < finish! Beep counter% = counter% + 1 Wend HowManyTimes% = counter% End Function howLong!= CSng(InputBox _ ("For your own sake, enter a small number.")) howManyBeeps% = HowManyTimes(howLong!) MessageBox "Number of beeps:"& Str(howManyBeeps%)
関連項目