Hey, new to the forum.
I'm currently taking my first programming course, and in one of the assignments, I was asked to trace the following Fortran77 program fragment by hand and determine the final values for n and m:
integer n, m, k, j
n = 0
m = 0
do k = 1, 3
do j = k, 1, -1...