H7 Methoden - Testen - Geef beoordeling

Sign in to test your solution.
using System; namespace Beoordeling { public class Program { public static void Main(string[] args) { //deze code niet aanpassen string beoordeling1 = GeefBeoordeling(30); string beoordeling2 = GeefBeoordeling(60); string beoordeling3 = GeefBeoordeling(75); string beoordeling4 = GeefBeoordeling(90); Console.WriteLine($"Score 30: {beoordeling1}"); Console.WriteLine($"Score 60: {beoordeling2}"); Console.WriteLine($"Score 75: {beoordeling3}"); Console.WriteLine($"Score 90: {beoordeling4}"); } // Schrijf hier je methode GeefBeoordeling } }
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.