Looking for more help on converting to doubles, integers, and decimal format when doing calculations.
EX: ...Console.Write(" INPUT TOTAL SALES : ");
...userInput = Console.ReadLine();
...totalSales = Convert.ToDouble(userInput);
I'm not completely understanding why I needed to convert such to a double, why it couldn't just be Console.ReadLine();
TY sorry if this is so amateur. LOL