153k views
20 votes
Write pseudocode for washing a car using at least five steps.

User Dolcalmi
by
8.0k points

1 Answer

0 votes

Answer:

#include <iostream>

int main()

{

bool carWashed{ 0 };

bool washCar{ 0 };

while(carWashed == 0)

{

washCar();

}

if(washCar == 1)

{

carWashed{ 1 }

}

}

Step-by-step explanation:

c++

User HerbalMart
by
7.2k points

Related questions

2 answers
4 votes
64.2k views