Part C: Pseudo Code, Flowchart and Trace Table
Write a Pseudo Code and Trace Table, and draw a Flowchart based on the program given.
7. Calculate and display the price of "Hot Pizza" ordered by customers. The diameter of the pizza must be prompted by user. (Formula to calculate pizza's price: Diameter x Rate)
\begin{tabular}{|c|c|}
\hline Diameter & Rate \\
\hline \( 20-30 \mathrm{~cm} \) & RM 0.60 \\
\hline \( 31-40 \mathrm{~cm} \) & RM 0.80 \\
\hline \( 41-55 \mathrm{~cm} \) & RM 1.20 \\
\hline
\end{tabular}
8. Print the even numbers between 1 to 20 by using the Pre-Test Loop. Change the solution by using the PostTest Loop.