0
Help for a car rental application using C#
Hi guys, i'm doing an application for car rental and I need to display the number of service for every 100KM how can I do this? Using foreach? Thank you.
2 Respuestas
+ 2
if (kilometers % 100 == 0) display_service_number();
0
Ok Thank you I will try that