#23914: c++


bryan0004 (coooper)

學校 : 國立嘉義高級中學
編號 : 127952
來源 : [163.27.3.92]
最後登入時間 :
2021-01-12 08:15:44
a862. 2. My Dear Friend VIR -- HP CodeWars2010 | From: [1.200.232.169] | 發表日期 : 2021-01-01 12:43

#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;

}

 

 
ZeroJudge Forum