Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Yra žinomos n plokštumoje nubrėžtų apskritimų centrų koordinatės (x,y) ir spinduliai R. Kurio apskritimo III ketvirtyje ilgis didžiausias? Sudarykite metodą apskritimo ilgiui apskaičiuoti.
- #4 5 8
- #3 -5 6
- #-2 -10 10
- #-9 8 3
- #8 -6 4
- #-6 -2 9
- k=0
- max=0
- def ilgis (r)
- ilg=2*3.14*r
- end
- fp=File.open("input.txt", "r")
- rz=File.open("output.txt", "w+")
- x,y=[]
- j=0
- l=0
- stac=0
- fp.each do |item|
- c=item.split(" ")
- for i in 0..c.length do
- x=c[0].to_i
- y=c[1].to_i
- r=c[2].to_i
- end
- j+=1
- if (x<0) and (y<0) then
- ilg=ilgis(r)
- if ilg > max then
- max=ilg
- k=j
- end
- end
- end
- puts "III ketvirtyje ilgis didziausias #{k}-ojo apskritimo, jo ilgis #{max}"
Add Comment
Please, Sign In to add comment