#23178: _ans


ce5324 (伃)

學校 : 臺北市私立延平高級中學
編號 : 128513
來源 : [219.70.166.115]
最後登入時間 :
2021-06-06 21:44:53

#include <iostream> 

#include <stdio.h>

#include <iomanip>

using namespace std;

int main(){

double v,r;

while(cin>>v>>r){

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

}

}