Advertisement
Qpel

ED6.1.Duotas masyvas A(n) ir skaičius L. Nelyginio numerio

Jan 8th, 2018
380
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.59 KB | None | 0 0
  1. 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.
  2. puts "iveskite kiek bus nariu"
  3. a=gets.to_i
  4. n=a
  5. B= Array.new(n)
  6. puts "Iveskite skaiciu L="
  7. l=gets.to_i
  8.  
  9. while a>0
  10.   puts "iveskite masyvo nari"
  11.   B[a]=gets.to_i
  12.  
  13.   a=a-1
  14.  
  15. end
  16. puts B
  17. max=0
  18. while n>0
  19.  
  20.   if B[n]%2!=0 then
  21.     B[n]=l
  22.   end
  23.  
  24.   if B[n]>max then
  25.     max=B[n]
  26.   end
  27.   n=n-1
  28. end
  29. puts "****************************************"
  30. puts B
  31. puts "Didziausias masyvo elementas = #{max}"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement