how to implement this psuedocode as script

2 次查看(过去 30 天)
Implement the following pseudocode within your script.
n = a randomly chosen integer between 1 and 10^6
Display n to the screen
maxiter = 10^4
for k = 1, 2, . . . , maxiter
If n = 1, then
display iteration k to the screen
stop your loop
end if statement
If n is even
n = n/2
otherwise (that is, if n is odd)
n = 3n + 1
end if statement
end for loop

采纳的回答

Walter Roberson
Walter Roberson 2018-3-7

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by