Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

rubyx

# Hello World Program in Ruby
x = 0;
for i in 1..9
  puts "========第#{i}圈==========="
  puts "現在的 x 為 : #{x}"
  puts "i = #{i} "
  puts "x = #{x} + #{i} "
  x = x+i;
  puts "x == #{x}"
end

puts x

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.