提交时间:2024-11-16 10:55:10
运行 ID: 121
#include<bits/stdc++.h> using namespace std; int main() { int b,s,y; cin>>b>>s>>y; if(y==1||y==0) { cout<<b/s; } else { cout<<b/s-y; } return 0; }