A..3 課題3

prog3.jl

# prog3.jl --- 与えられた k,n に対して、1^k, 2^k, ..., n^k を表示する。
function prog3(k,n)
  for i=1:n
    println(i^k)
  end
end



桂田 祐史