0
You are making a program for a bus service. A bus can transport 50 passengers at once. Given the number of passengers waitin
Why this is wrong? Actually my answer was same as the expected output, but it shown as wrong! What can i do?
8 Answers
0
Amritha T Rathinam
You don't have to print anything except final result because test cases outputs only understand final result.
Anything which you print test cases output doesn't understand.
+ 3
Don't print any message.
Not for input and not for output. Do only print the result (seats).
All other output will be interpreted as wrong output.
+ 2
Why did you spam the same question four different times?
+ 2
Okay Brother!
Thnk Yu So Much!!
+ 2
Okay Brother now only i understood!
Actually I am new here!
Thnaks to everyone âđťâ¤ď¸
+ 1
Sorry, it was caused because of some network issue
+ 1
Amritha T Rathinam
Where is your code?
+ 1
#include <iostream>
using namespace std;
int main() {
//your code goes here
int n,bus=0,seat=0;
cout<<"Enter the total number of passengers:"<<endl;
cin>>n;
bus=n%50;
seat=50-bus;
cout<<"The last bus will have"<<seat<<"seats"<<endl;
return 0;
}