0

C++ Transpotatiom Project

include <iostream> using namespace std; int main() { //your code goes here int Passengers,seats=50; cin >> Passengers; seats -= Passengers % 50; cout<< seats<<endl; return 0; }

10th Dec 2021, 4:50 AM
Khawar Mehfooz
Khawar Mehfooz - avatar
1 Answer
+ 2
Khawar Mehfooz Do you have a question to go with this post?
10th Dec 2021, 5:00 AM
Rik Wittkopp
Rik Wittkopp - avatar