55.1k views
4 votes
Write a simple algorithm in pseudocode that asks the user their favourite colour and then agrees with their choice, quoting the colour in the response.

1 Answer

3 votes

Answer:

i am still a beginner in this but i hope it helps.

  • add scanner object;
  • declare string FavColour;
  • print msg to ask user for input
  • scan input FavColour;
  • print msg (" your favourite colour is " + FavColour)

User SanjayIV
by
5.0k points