In: Computer Science
PLEASE ANSWER
USING C#
Is there a Prius version? Did you know that the average Boeing 747 airplane uses approximately 1 gallon of fuel per second? Given the speed of the airplane, that means it gets 5 gallons to the mile. No, not 5 miles to the gallon, 5 gallons to the mile. You may be questioning why such a horribly inefficient machine is allowed to exist, but you’ll be happy to find out that, because this airplane hold 568 people, it averages about 0.01 gallons per person – (100 miles per gallon per person). Your job is to design (pseudocode) and implement (source code) a program that asks the user for a distance the plane has to fly (i.e. the length of the trip) and also asks the cost of jet fuel (which is currently $1.80 per gallon). The program should then calculate the total fuel charges to make the trip. Next, ask the user how many people will fly, as well as the average cost of a ticket. Finally, print the total profit made (or lost) and the average gas mileage per person. Document your code and properly label the input prompts and the outputs as shown below.
Sample run 1:
Enter the flight distance: 1000
Enter the current cost of jet fuel: $2 The flight will cost $10000.0 in fuel.
Enter the number of passengers: 5
Enter the average cost of a ticket: 1000
You will make a profit of $-5000.0
You averaged 1.0 miles per person per gallon!
Result:
Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlightDistanceCalcConsole
{
class Program
{
static void Main(string[] args)
{
int distance;
Console.WriteLine("Enter the flight distance");
distance = Convert.ToInt16(Console.ReadLine());
int cost;
Console.WriteLine("Enter the current cost of jet fuel");
cost = Convert.ToInt16(Console.ReadLine());
double amount;
amount=(distance*5)*2;
Console.WriteLine("The flight will cost " + amount);
int passengers;
Console.WriteLine("Enter number of passengers");
passengers = Convert.ToInt16(Console.ReadLine());
int ticketCost;
Console.WriteLine("Enter the average cost of ticket");
ticketCost = Convert.ToInt16(Console.ReadLine());
double profit;
profit = ticketCost * passengers;
Console.WriteLine("You will make profit " + profit);
Console.ReadLine();
}
}
}
Waiting for your comments