提交时间:2025-07-16 10:01:42

运行 ID: 333177

#include<bits/stdc++.h> using namespace std; int main(){ int x,y,z; cin>>x>>y>>z; if(y%z==0) cout<<y/z; else cout<<fixed<<setprecision(2)<<x/z<<endl; return 0; }