Это бейсикdim a(1,5)print "Введите элементы массива"for i=0 to 1 print "Строка "; i for j = 0 to 5 print "Введите элемент "; j input k if k mod 5 = 0 then a(i,j) = k - 3 else a(i,j) = k endif nextnextprint "Печать изменённого массива"for i = 0 to 1 print for j = 0 to 5 print a(i,j); " "; next jnext iend