- 1
Please give me C++ project 1 solution?
4 Answers
+ 3
You won't benefit from getting ready-made code.
We can help you, if you show us your code attempt: We can check on it and suggest you what to change
+ 1
Only output the result, not any other strings
0
#include <iostream>
using namespace std;
int main() {
int a,b;
cout<<"enter a total number\n";
cin>>a;
cout<<"remaining seats in last bus\n";
b=50-a%50;
cout<<b;
return 0;
}
my project 1 answer is not matching with the results given in project.
0
Thanks