In: Computer Science
PLEASE DO THIS IN 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!
main.cs:
using System;
class MainClass {
public static void Main (string[] args) {
Console.WriteLine ("Welcome to the Airpane calculator");
Console.WriteLine("Enter the flight distance: ");
int distance = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter the current cost of jet fuel: ");
int fuel = Convert.ToInt32(Console.ReadLine());
double costFlight = (distance*5) * fuel;
Console.WriteLine("The flight will cost $"+costFlight+" in fuel.");
Console.WriteLine("Enter the number of passengers: ");
int passengers = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter the average cost of a ticket: ");
double average = Convert.ToDouble(Console.ReadLine());
double profit = (passengers * average) - costFlight ;
Console.WriteLine("You will make a profit of $"+profit);
}
}
Output: