Algorithm, pseudocodes and flowcharts are used as prototypes for a complete program.
<u>The pseudocode is as follows:</u>
input n
for i = 1 to n
print("CS")
<u>The algorithm is as follows:</u>
1. Begin
2. Input number
3. For 1 = 1 to number
3.1 Display "CS"
4. End For
5. Stop
The following explanation of the pseudocode can be used for algorithms and flowcharts
<em>This gets an </em><em>integer input </em><em>from the </em><em>user </em><em>(the </em><em>integer </em><em>represents the </em><em>number </em><em>of </em><em>times </em><em>to print "CS")</em>
input n
<em>This is </em><em>repeated n times</em>
for i = 1 to n
<em>This </em><em>prints "CS"</em><em> in each </em><em>iteration</em>
print("CS")
See attachment for flowchart
Read more about algorithm, pseudocodes and flowcharts at:
brainly.com/question/21172316