You are on page 1of 2

Machine Problem 1: Prog12

Create a complete C# program that will allow the user to input a symbol and display a 10x10 square
using this symbol. Use while loop.

PSEUDOCODE

BEGIN

Prompt user for any character

Save input to variable c

Initialize the value of int i to 0

While i < 10

Initialize the value of j to 0

While j < 10

Print c

j increments

i increments

ENDWHILE

END
FLOWCHART

You might also like