H7 Methoden - Testen - Reiskosten berekenen

Sign in to test your solution.
using System; namespace ReiskostenBerekenen { public class Program { public static void Main(string[] args) { //JE MAG DE CODE IN DE MAIN METHODE NIET AANPASSEN Console.WriteLine("Geef de afstand in km in:"); double afstand = Convert.ToDouble(Console.ReadLine()); Console.WriteLine("Geef de prijs per km in:"); double prijs = Convert.ToDouble(Console.ReadLine()); Console.WriteLine("Geef het aantal passagiers in:"); int passagiers = Convert.ToInt32(Console.ReadLine()); // aanroep voor 1 passagier (standaard) double kostEnkele = BerekenReiskosten(afstand, prijs); Console.WriteLine($"Reiskosten voor 1 passagier: {kostEnkele} euro"); // aanroep voor meerdere passagiers double kostGroep = BerekenReiskosten(afstand, prijs, passagiers); Console.WriteLine($"Reiskosten voor {passagiers} passagiers: {kostGroep} euro"); } // Schrijf hier je methode BerekenReiskosten } }
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.