1.列印字串"hello, world.「
puts "hello,world.「
2.在字串"hello, ruby.「中找到"ruby."的座標
"hello, ruby.「.index("ruby.")
3.列印你的名字10遍
"***x"*10
4.列印字串」this is sentence number 1.「其中數字1一直變化到10
x=0while x<10
x=x+1
puts 」this is sentence number #.「
end5.檔案執行ruby程式
儲存為xx.rb
6.隨機程式,讓玩家猜隨機數字是多少,並告訴玩家是猜大還是猜小了
puts "guess a number in(0-9)."
value=rand(10)
num=-1
while num!=value
str=gets
num=str[0,str.length-1].to_i
while num == 0 && str[0,str.length-1] != "0"
puts "please entry a number!"
str=gets
num=str[0,str.length-1].to_i
endputs "your number is too smaller" if numputs "bingo" if num==value
puts "your number is too bigger" if num>value
end
ruby 第一天作業
找 ruby api文件 替換字串某一部分的方法 str.gsub pattern,replacement new str str.gsub pattern new str hello gsub aeiou h ll 將母音替換成 號 hello gsub aeiou 1 hll 將母音加上尖括號,...
第一天作業
1 a float input enter a degree in celsius b 9 5 a 32 print a,celsius is b,fahrenheit 2 banjing,gao map float,input 請輸入半徑和高 split banjing float input 請...
第一天作業
筆記本 1.功能上 筆記本的重量 筆記本的型號 筆記本的拆卸 筆記本是否能上網 筆記本是否能正常重啟 2.介面上 筆記本的款式 華碩,蘋果,聯想,戴爾,惠普,華為,thinkpad 筆記本的亮度 筆記本的按鈕 筆記本的內屏的型號 3.效能上 筆記本耗電程度 筆記本續航時間 筆記本散熱是否正常 筆記本...