Ruby计算加权平均分(基于Hash)

下面是编程之家 jb51.cc 通过网络收集整理的代码片段。

编程之家小编现在分享给大家,也给大家做个参考。

@items=Hash.new
puts "please input the number of your courses:"
course_number=gets
puts "please input your score and the balance"
puts "---------------------------------------"
for i in 1..course_number.to_i
  puts "input your score:"
  score=gets
  puts "input its balance:"
  balance=gets
  @items[score]=balance
end
sum=0
total_credit=0
@items.each_pair do |key,value|
  sum=sum+key.to_i*value.to_i
end

@items.each_value { |value|
  total_credit=total_credit+value.to_i
}
result=sum/total_credit
puts "-------------------"
puts "your balance average score is #{result}"



以上是编程之家(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。

相关文章

validates:conclusion,:presence=>true,:inclusion=>{...
一、redis集群搭建redis3.0以前,提供了Sentinel工具来监控各...
分享一下我老师大神的人工智能教程。零基础!通俗易懂!风趣...
上一篇博文 ruby传参之引用类型 里边定义了一个方法名 mo...
一编程与编程语言 什么是编程语言? 能够被计算机所识别的表...
Ruby类和对象Ruby是一种完美的面向对象编程语言。面向对象编...