Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 2. Turime n įvairaus skersmens d(i) ir aukščio a(i) statinių. Rasti statinių tūrius. Kiek yra didesnės kaip 100 litrų talpos statinių? Sudarykite metodą statinės tūriui apskaičiuoti.
- Input.txt
- 7 9
- 2 4
- 2 4
- 4 4
- 3 7
- 5 12
- 3 2
- 6 4
- def turis (d,a)
- r=d/2
- turis=3.14*(r*r)*a
- end
- fp=File.open("input.txt", "r")
- x,y=[]
- j=0
- k=0
- fp.each do |item|
- c =item.split(" ")
- for i in 0..c.length do
- d=c[0].to_i
- a=c[1].to_i
- end
- v=turis(d,a)
- puts v
- if (v>100) then
- k=k+1
- end
- end
- puts "\n"
- puts "Viso yra statiniu didesnes nei 100l talpos: #{k} "
- fp.close
Add Comment
Please, Sign In to add comment