Steve John
Steve John
CC#
Created by martito on 10/5/2023 in #help
✅ Help with the code, please. I want my program to work properly.
got it
21 replies
CC#
Created by martito on 10/5/2023 in #help
✅ Help with the code, please. I want my program to work properly.
what?
21 replies
CC#
Created by martito on 10/5/2023 in #help
✅ Help with the code, please. I want my program to work properly.
your program is modified so that it works properlly
21 replies
CC#
Created by martito on 10/5/2023 in #help
✅ Help with the code, please. I want my program to work properly.
for (int i = 0; i < 10; i++) { Console.Write("Enter a model of your car {0}:", i + 1); modelcar[i] = Console.ReadLine(); retry: Console.Write("Enter a year of production {0}:", i + 1); if (int.TryParse(Console.ReadLine(), out yearcar[i])) { if (yearcar[i] >= 2020) { Console.WriteLine(" The car is new."); } else { Console.WriteLine(" The car isn't new."); } } else { Console.WriteLine(" Invalid year. Please, enter again."); goto retry; } }
21 replies