I am new to this and was hoping someone can explain this pseudocode to me.
Pseudo code example:
J := 1 ;
K := 10 ;
L := 5 ;
J_LIST := (1, 2, 3, 4, 5);
For J in J_LIST do
K := K - j ;
L := K + 2 * J ;
enddo ;
what is the purpose of the J_List in this example? How would the K and L values be determined?
Pseudo code example:
J := 1 ;
K := 10 ;
L := 5 ;
J_LIST := (1, 2, 3, 4, 5);
For J in J_LIST do
K := K - j ;
L := K + 2 * J ;
enddo ;
what is the purpose of the J_List in this example? How would the K and L values be determined?