Run ID:95074
提交时间:2024-10-26 17:40:18
#include <iostream> using namespace std; int main(){ float n,t,s; cin>>n>>t>>s; int x; x = s/t; float y; y = s/t; if(x==y){ x = x+1; } if(x>n){ n = 0; } else{ n = n-x; } cout<<x; }