Question: #include using namespace std; int main ( ) { int totalLiters; int numHectoliters; int numDecaliters; int numLiters; cin > > totalLiters; numHectoliters = totalLiters /

#include
using namespace std;
int main(){
int totalLiters;
int numHectoliters;
int numDecaliters;
int numLiters;
cin >> totalLiters;
numHectoliters = totalLiters /100;
numDecaliters =(int)(numHectoliters % totalLiters);
numLiters = totalLiters %10;
cout << "Hectoliters: "<< numHectoliters << endl;
cout << "Decaliters: "<< numDecaliters << endl;
cout << "Liters: "<< numLiters << endl;
return 0;
}In C++ Convert totalLiters to hectoliters, decaliters, and liters, finding the maximum number of hectoliters, then decaliters, then liters.
Ex: If the input is 112, then the output is:
Hectoliters: 1
Decaliters: 1
Liters: 2
Note: A hectoliter is 100 liters. A decaliter is 10 liters.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!