好的,所以我正在尝试用 ruby 制作一个非常简单的程序,但我一直遇到错误。我不想要直接的答案,但我想要指导,因为它是针对学校的,我不喜欢作弊。我正在编写一个简单的程序,用户输入 iPhone 屏幕的长度和宽度,然后程序将面积乘以 326。326 是分辨率的每英寸像素 (PPI),然后乘以该值by (length x width) 将给出屏幕上的总像素。
到目前为止我所拥有的:
l = gets.to_i
w = gets.to_i
print "What is the length of the screen?"
#(dont know how to get them to enter it)
print "What is the width?"
#(same as line before dont know how to get them to enter it)
result = 326(l*w)
这就是我所拥有的一切,并希望得到任何帮助,只是不要给我整个程序,拜托!