program loops
implicit none
integer x
integer::y
do x=1,10
y=3*x
print*,"3 times ",x,"=",y
end do
end
I want to create a multiplication table for 3. The program can be compiled and runs, but the formatting or the display does not look good as there is lot of spaces. How can I improve or do formatting to make the display look good?