Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Duotas masyvas A(n) ir skaičius L. Nelyginio numerio elementus pakeisti skaičiumi L ir po to rasti didžiausią elementą. Pradinius duomenis ir pakeistą masyvą spausdinti ekrane.
- puts "iveskite kiek bus nariu"
- a=gets.to_i
- n=a
- B= Array.new(n)
- puts "Iveskite skaiciu L="
- l=gets.to_i
- while a>0
- puts "iveskite masyvo nari"
- B[a]=gets.to_i
- a=a-1
- end
- puts B
- max=0
- while n>0
- if B[n]%2!=0 then
- B[n]=l
- end
- if B[n]>max then
- max=B[n]
- end
- n=n-1
- end
- puts "****************************************"
- puts B
- puts "Didziausias masyvo elementas = #{max}"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement