59.0k views
5 votes
Draw flowchart to print name and address of person.

1 Answer

4 votes

Flowchart to print name and address of a person:

A[Start] --> B{Get name}

B --> C{Get address}

C --> D{Print "Name: " + name}

D --> E{Print "Address: " + address}

E --> F[End]

The Flowchart

This simple flowchart shows the steps involved in printing a person's name and address:

Start (A)

Get the person's name (B)

Get the person's address (C)

Print "Name: " followed by the person's name (D)

Print "Address: " followed by the person's address (E)

End (F)

User Luke Givens
by
8.8k points