Coffee Time | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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)); } } } }

28th May 2023, 5:43 PM
Cory Peitsch
Cory Peitsch - avatar
2 Answers
+ 4
Make discount a double edit: oh, and your foreach loop says int, too, when those are already double.
28th May 2023, 5:59 PM
Orin Cook
Orin Cook - avatar
0
Thank you!
28th May 2023, 6:09 PM
Cory Peitsch
Cory Peitsch - avatar