- 1
Решение задачи про автобусы и свободные места.
Вот код: #include <iostream> using namespace std; int main(){ int n; cin>>n; while (n>50){ n= n-50; } if (n<=50) { n=50-n; cout<<n; } return 0; }
1 Answer
+ 1
Hi Ишхан 👋,
The code you write is equivalent to :
cout << n % 50; // that's it
but what is your question !