I have this pseudo code that I need to hand trace:
begin
count <- 1
while count < 11
t <- (count ^ 2) - 1
output t
count <- count + 1
endwhile
end
I am unsure what <-
means and I don't really understand what to do with the t
. I also keep getting 1,1,1, etc. every time I go through. Any help would be appreciated!