#23914: _c++


bryan0004 (coooper)

學校 : 國立嘉義高級中學
編號 : 127952
來源 : [163.27.3.92]
最後登入時間 :
2021-01-12 08:15:44

#include <iostream>

#include <iomanip>

 

using namespace std;

 

int main()

{

    float v,r;

    while(cin>>v>>r)

    {

 

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

    }

 

 

 

 

 

    return 0;

}