0
Coffee Time
Code not working: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SoloLearn { class Program { static void Main(string[] args) { int discount = Convert.ToInt32(Console.ReadLine()); Dictionary<string, double> coffee = new Dictionary<string, double>(); coffee.Add("Americano", 50); coffee.Add("Latte", 70); coffee.Add("Flat White", 60); coffee.Add("Espresso", 60); coffee.Add("Cappuccino", 80); coffee.Add("Mocha", 90); //your code goes here foreach(KeyValuePair<string, int>entry in coffee) { Console.WriteLine(entry.Key+": "+(entry.Value - entry.Value * discount/100)); } } } }
2 Answers
+ 4
Make discount a double
edit: oh, and your foreach loop says int, too, when those are already double.
0
Thank you!