H7 Methoden - Drillen - 7 BTW Berekenaar
Log in om je oplossingen te testen.
using System;
namespace BtwBerekenaar
{
public class Program
{
public static void Main(string[] args)
{
Console.WriteLine($"Prijs smartphone (100 euro, standaard BTW): {BerekenPrijsInclusiefBtw(100)}");
Console.WriteLine($"Prijs boek (20 euro, 6% BTW): {BerekenPrijsInclusiefBtw(20, 6)}");
Console.WriteLine($"Prijs consult (50 euro, 0% BTW): {BerekenPrijsInclusiefBtw(50, 0)}");
}
// Schrijf hier je methode BerekenPrijsInclusiefBtw
}
}
Je kunt zo vaak indienen als je wenst. Er wordt enkel rekening gehouden met je laatst ingediende oplossing.
Log in om je oplossingen te testen.