App下載

ruby 在線工具

#!/usr/bin/ruby
# -*- coding: UTF-8 -*-

$i = 0
$num = 5
begin
   puts("在循環(huán)語句中 i = #$i" )
   $i +=1
end while $i < $num
運行結果