0
Argentina Challenge help
This is the code I have. It's embarrassing I'm this far along and can't tell what's wrong here lol. It gets pesos but not dollars. I also tried double and parsing floats. decimal dollar=Convert.ToDecimal(Console.ReadLine()); decimal peso=Convert.ToDecimal(Console.ReadLine()); decimal conversion = peso * 0.02m; if(conversion<dollar){ Console.WriteLine("Pesos"); } else if(dollar<conversion){ Console.WriteLine("Dollars");} } }
3 Answers
+ 3
I think it says that the first input is pesos and the second one dollars.
+ 1
WOW. Thanks, Lisa, that worked. Literally just switched the inputs around lmao!
+ 1
Great!