+ 1
Pseudocode
Count -> 1 Procedure Test1 (Count) If ( Count not 5) then (apply Test1 to the value Count +1; print the value assigned to Count) Why the result is: 4 3 2 1
1 Antwort
0
Julien Quentin Why does in my head says the output
First count +1 which means 2 then 2 +1 means 3 ; and 3 +1 means 4 and output
2
3
4 😭😭