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

User Dolcalmi
by
4.9k 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
4.5k points