- 1
Hi I am asking about the transportation project I can't get that
2 Réponses
0
//your code goes here
int input; // define a variable to take from the user
cin >> input; // take input from the user
cout << 50 - input % 50; // print the result (find the remaining seats in the bus, a bus have 50 seats and if travellers as input get down from bus the result says the remaining seat numbers)
I hope, it's clear. Happy coding!
0
Thanks you