不知道哪里错了,请求指出,谢谢了
#include<iostream> using namespace std; int main(){ int m,t,s; cin>>m>>t>>s; if(m==0){ return 0; } int a=m-s/t; cout<<a; return 0; }