Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...



A milk carton can hold 3.78 litres of milk. Each morning, a dairy farm ships cartons of milk to a local grocery store. The cost of producing one litre of milk is $0.38, and the profit of each carton of milk is $0.27. Write a C++ program that prompts the user to enter the total amount of milk produced in the morning. Then display the number of milk cartons needed to hold milk, the cost of producing milk, and the profit for producing milk.

Answers were Sorted based on User's Feedback



A milk carton can hold 3.78 litres of milk. Each morning, a dairy farm ships cartons of milk to a..

Answer / hasan

#include <iostream>
#include <iomanip>

using namespace std;

int main(){
double milkProduced, cartonsRequired;

const double cartonSize = 3.78;
const double productionCost = 0.38;
const double cartonProfit = 0.27;

cout << "How much milk did you produce? ";
cin >> milkProduced;

cartonsRequired = milkProduced / cartonSize;

cout << fixed << showpoint << setprecision(2);

cout << "That is going to require " << static_cast<int>(cartonsRequired) << " cartons" << endl;
cout << "Total Cost to Produce: $" << cartonsRequired * productionCost << endl;
cout << "Total Profit: $" << cartonsRequired * cartonProfit << endl;


return 0;
}

Is This Answer Correct ?    11 Yes 25 No

A milk carton can hold 3.78 litres of milk. Each morning, a dairy farm ships cartons of milk to a..

Answer / vikram

#include<iostream.h>
int main()
{
float a,b,c,d;

cout<<"enter the no.of litters produced n the morning";
cin>>a;
b=ciel(a/3.78);
c=a*0.38;
d=b*0.27;
cout<<"no.of cartons required are"+b;
cout<<"cost of produsing milk:"+c;
cout<<"profit is:"+d;
return 0;
}

Is This Answer Correct ?    26 Yes 53 No

Post New Answer

More C++ General Interview Questions

Define a conversion constructor?

0 Answers  


What is the difference between function overloading and operator overloading?

0 Answers  


What are c++ data types?

0 Answers  


What is pointer in c++ with example?

0 Answers  


What is "mutable" keyword?

2 Answers   Infosys, Teradata,


Explain virtual class?

0 Answers  


How to reduce a final size of executable?

3 Answers  


Can I learn c++ without learning c?

0 Answers  


Can a program run without main function?

0 Answers  


What are c++ stream classes?

0 Answers  


Write about c++ storage classes?

0 Answers  


Do inline functions improve performance?

0 Answers  


Categories