Question: Assignment: Suppose you have the following pseudo code: 01 k=(j+13)/27 02 loop: 03 if k > 10 then goto out 04 k=k+1 05 i=3*k-1 06

Assignment:

Suppose you have the following pseudo code:

01 k=(j+13)/27 02 loop: 03 if k > 10 then goto out 04 k=k+1 05 i=3*k-1 06 goto loop 07 out: 08 if((k==1)||(k==2))j=2*k-1 09 if((k==3)||(k==5))j=3*k+1 10 if(k==4)j=4*k-1 
 

Rewrite the code between lines 01-07 as a proper loop in the following languages: a) C++ b) Python c) Ruby (you will need to investigate how to do this on your own)

Rewrite the code between lines 08-10 using a multiple-selector statement in the following languages

a) C++ b) Python c) Ruby (you will need to investigate how to do this on your own)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!