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