#23185: c++解法(新手不足之處請見諒_


rayhsu1216 (108-34許洋睿)

學校 : 臺北市私立延平高級中學
編號 : 128874
來源 : [203.72.178.2]
最後登入時間 :
2023-07-21 13:12:01

#include <bits/stdc++.h>

using namespace std;

int main(int argc, char** argv) {

double v,r;

while(cin>>v>>r){

    cout<<fixed<<setprecision(4)<<v/r*1000<<endl;

return 0;

}