C programming Practice writing programs with nested control structures (i.e. if-else ifelse statements, while loops, for loops, and do-while loops). For this, you will convert your Classwork 6 pseudocode to C code. Your program will write the song introduction using a do-while loop. The dance instruction will use a while loop. Inside the while loop, the program will have a for loop that iterates through the 16 steps of the Cupid Shuffle, using an if-else if-else block to determine what step it is and print out the instruction. Example Compilation and Execution Do you like group/line dances? Well, I do, and my favorite is the Cupid Shuffle. Please put it on and I’ll show you how to do it! Is the introduction over (y/n)? n Do what you want. Is the introduction over (y/n)? n Do what you want. Is the introduction over (y/n)? y Alright, it’s dance time! Is the song over (y/n)? n Alright, keep on going! Step 1: Step right Step 2: Step right Step 3: Step right Step 4: Step right Step 5: Step left Step 6: Step left Step 7: Step left Step 8: Step left Step 9: Kick right Step 10: Kick left Step 11: Kick right Step 12: Kick left Step 13: Turn around Step 14: Turn around Step 15: Turn around Step 16: Turn around Is the song over (y/n)? n Alright, keep on going! Step 1: Step right Step 2: Step right Step 3: Step right Step 4: Step right Step 5: Step left Step 6: Step left Step 7: Step left Step 8: Step left Step 9: Kick right Step 10: Kick left Step 11: Kick right Step 12: Kick left Step 13: Turn around Step 14: Turn around Step 15: Turn around Step 16: Turn around Is the song over (y/n)? y Congratulations, you have just learned the Cupid Shuffle!
Types of Loop
Loops are the elements of programming in which a part of code is repeated a particular number of times. Loop executes the series of statements many times till the conditional statement becomes false.
Loops
Any task which is repeated more than one time is called a loop. Basically, loops can be divided into three types as while, do-while and for loop. There are so many programming languages like C, C++, JAVA, PYTHON, and many more where looping statements can be used for repetitive execution.
While Loop
Loop is a feature in the programming language. It helps us to execute a set of instructions regularly. The block of code executes until some conditions provided within that Loop are true.
C programming
Practice writing programs with nested control structures (i.e. if-else ifelse statements, while loops, for loops, and do-while loops).
For this, you will convert your Classwork 6 pseudocode to C code. Your program will write the song introduction using a do-while loop. The dance instruction will use a while loop. Inside the while loop, the program will have a for loop that iterates through the 16 steps of the Cupid Shuffle, using an if-else if-else block to determine what step it is and print out the instruction.
Example Compilation and Execution
Do you like group/line dances? Well, I do, and my favorite is the Cupid
Shuffle. Please put it on and I’ll show you how to do it!
Is the introduction over (y/n)? n
Do what you want.
Is the introduction over (y/n)? n
Do what you want.
Is the introduction over (y/n)? y
Alright, it’s dance time!
Is the song over (y/n)? n
Alright, keep on going!
Step 1: Step right
Step 2: Step right
Step 3: Step right
Step 4: Step right
Step 5: Step left
Step 6: Step left
Step 7: Step left
Step 8: Step left
Step 9: Kick right
Step 10: Kick left
Step 11: Kick right
Step 12: Kick left
Step 13: Turn around
Step 14: Turn around
Step 15: Turn around
Step 16: Turn around
Is the song over (y/n)? n
Alright, keep on going!
Step 1: Step right
Step 2: Step right
Step 3: Step right
Step 4: Step right
Step 5: Step left
Step 6: Step left
Step 7: Step left
Step 8: Step left
Step 9: Kick right
Step 10: Kick left
Step 11: Kick right
Step 12: Kick left
Step 13: Turn around
Step 14: Turn around
Step 15: Turn around
Step 16: Turn around
Is the song over (y/n)? y
Congratulations, you have just learned the Cupid Shuffle!
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 4 images