Question: 0.9 Study the following method: public void mystery (int n ) { System.out, print (For n=+n); while (n>1) if (n%2=0) else n=n/2 n=3n+1 System. out.
0.9 Study the following method: public void mystery (int n ) \{ System.out, print ("For n="+n); while (n>1) if (n%2=0) else n=n/2 n=3n+1 System. out. printin (", the loop terminated"). System.out.pin Trace the execution of this method when n=7. In the same class as the method mystery, develop a main method and a run method to show that the while statement in the method mystery successfully terminates for any positive integer n less than 100 . Cultural note: It can be shown that this method terminates for all int values greater than 0 , but it is an open question whether the method terminates for all integer values greater than 0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
