CPP_Basics_Syntax/第一讲 变量、输入输出、表达式与顺序语句/t618.cpp

21 lines
559 B
C++
Raw Permalink Normal View History

2023-08-02 15:42:00 +08:00
// 一辆汽车每行驶 12 公里需要消耗 1 升汽油,现在告诉你该汽车的行驶速度 S
// km /
// h
// )和行驶时间 T
// h
// ),请你计算该车在行驶过程中一共消耗了多少升汽油。
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
int main()
{
long long T, S;
cin >> T >> S;
// cout << (T * S) / 12.0 << endl;
// printf("%.3lf", (double)T * S / 12);
cout << fixed << setprecision(3) << T * S / 12.0 << endl;
return 0;
}