1 puts "hello world" 2 3 "Hello, Ruby.".index("Ruby.") 4 5 x = 0 6 puts "bigwhite" while (x = x + 1) < 11 7 8 x = 0 9 puts "This is sentence #{x = x + 1}" while x < 10 10 11 x = gets().to_i 12 r = rand(100) 13 puts "value is #{r} greater" if x > r 14 puts "value is #{r} less" if x < r 15 puts "vaue is #{r} bingo" if x == r
时间: 2024-10-12 21:19:00