Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Implement a solution for problem 3 from the Algorithms 12 assignment (Given belo

ID: 3884482 • Letter: I

Question

Implement a solution for problem 3 from the Algorithms 12 assignment (Given below). Note the following directions. Make sure that you use appropriate data type for all variables, include the introductory comments (purpose of the program, input needed, output expected, and processing needed), and follow the posted Assignment Guidelines to the extent of material covered in class so far. Do not put any code in the introductory comments or any arithmetic expressions in cout statements.
Prompt the user to enter an I for the conversion from inches to centimeters, a Q for the conversion of quarts to liters, a P for pounds to kilograms, an M for miles to kilometers, or an O for ounces to grams. Use a “simple-if” (single-branched if) to check the user’s input and when it is wrong output a message, prompt the user to re-enter the choice, and store the new value. Use a multiway branch to ask the user to enter the value for conversion, and calculate the metric equivalent. Use “simple ifs” (single-branched if’s) to confirm the entered value to be converted is valid (you do not have to check it is a number). Remember that for now you should assume the user will not enter an incorrect value twice.
The message for the invalid input of value to be converted should be something like
“The number of quarts cannot be negative. Please re-enter the number of quarts to be converted to liters”

===================================================================================================================

Problem 3 Algorithms 12 Assignment: Write a process to allow user to convert from English units to metric units. The user should be prompted to choose what type of conversion he/she would like to convert: inches to centimeters, quarts to liters, pounds to kilograms, miles to kilometers, or ounces to grams. The user should be able to choose the conversion by entering a number or a letter. Then the user should be asked to enter the value to be converted. When the user enters a value less than zero for the original measurement, tell him/her that the input is invalid as ask user to enter the value again. Assume the user will not enter an incorrect value more than once.

=======================================================================================================================

Explanation / Answer


#include <iostream>
#include <stdio.h>
#include <math.h>
#include <iomanip>
using namespace std;
int main()
{
int ch;
double quarts, litres, pounds, kilograms, miles, kilometre, ounces, grams;
cout<<" Conversions";
cout<<" 1. Convert Inches to Cemtimetres";
cout<<" 2. Convert Quarts to Litres";
cout<<" 3. Convert Pounds to Kilograms";
cout<<" 4. Convert Ounces to Grams";
cout<<" Enter User Choice for Conversion: ";
cin>>ch;
while(ch <= 0 || ch > 4)
{
cout<<" Entered Wrong Input";
cout<<" Again Enter Your Choice Correctly: ";
}
switch(ch)
{
case 1:
cout<<" Convert Quarts to Litres";
cout<<" Enter the Quantity of Quarts: ";
cin>>quarts;
if(!isdigit(quarts))
{
if(quarts <= 0)
{
cout<<" Entered Wrong Input";
cout<<" Again Enter Quantity if Quarts: ";
cin>>quarts;
}
}
if(quarts > 0)
{
litres = 0.946353 * quarts;
cout<<setprecision(2) <<" Litres = " <<litres;
}
break;
case 2:
cout<<" Convert Pounds to Kilograms";
cout<<" Enter Weight in Pounds: ";
cin>>pounds;
if(!isdigit(pounds))
{
if(pounds <= 0)
{
cout<<" Entered Wrong Input";
cout<<" Again Enter Weight in Pounds: ";
cin>>pounds;
}
}
if(pounds > 0)
{
kilograms = pounds / 2.2;
cout<<setprecision(2) <<" Kilograms = " <<kilograms;
}
break;
case 3:
cout<<" Convert Miles to Kilometers";
cout<<" Enter Length in Miles : ";
cin>>miles;
if(!isdigit(miles))
{
if(miles <= 0)
{
cout<<" Entered Wrong Input";
cout<<" Again Enter Length in Miles: ";
cin>>miles;
}
}
if(miles > 0)
{
kilometre = miles / 0.6214;
cout<<setprecision(2) <<" Kilometre = " <<kilometre;
}
break;
case 4:
cout<<" Convert Ounces to Grames";
cout<<" Enter Quantity in Ounces: ";
cin>>ounces;
if(!isdigit(ounces))
{
if(ounces <= 0)
{
cout<<" Entered Wrong Input";
cout<<" Again Enter Quantity in Ounces: ";
cin>>ounces;
}
}
if(ounces > 0)
{
grams = ounces / 0.035274;
cout<<setprecision(2) <<" Grams = " <<grams;
}
break;
}
return 0;
}


OUTPUT


Conversions
1. Convert Inches to Cemtimetres
2. Convert Quarts to Litres
3. Convert Pounds to Kilograms
4. Convert Ounces to Grams
Enter User Choice for Conversion: 1
Convert Quarts to Litres
Enter the Quantity of Quarts: 0
Entered Wrong Input
Again Enter Quantity if Quarts: 5.0
Litres = 4.7


Conversions
1. Convert Inches to Cemtimetres
2. Convert Quarts to Litres
3. Convert Pounds to Kilograms
4. Convert Ounces to Grams
Enter User Choice for Conversion: 2
Convert Pounds to Kilograms
Enter Weight in Pounds: 0
Entered Wrong Input
Again Enter Weight in Pounds: 50.0
Kilograms = 23


Conversions
1. Convert Inches to Cemtimetres
2. Convert Quarts to Litres
3. Convert Pounds to Kilograms
4. Convert Ounces to Grams
Enter User Choice for Conversion: 3
Convert Miles to Kilometers
Enter Length in Miles : 0
Entered Wrong Input
Again Enter Length in Miles: 15.0
Kilometre = 24


Conversions
1. Convert Inches to Cemtimetres
2. Convert Quarts to Litres
3. Convert Pounds to Kilograms
4. Convert Ounces to Grams
Enter User Choice for Conversion: 4
Convert Ounces to Grames
Enter Quantity in Ounces: 0
Entered Wrong Input
Again Enter Quantity in Ounces: 15.0
Grams = 4.3e+02

Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote