小白1-2
Posted luolinjin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小白1-2相关的知识,希望对你有一定的参考价值。
上一题积累的经验就可以用上了哈哈哈
#include<iostream>
#include<cmath>
#include<iomanip>
using namespace std;
int main() {
int t = 0;
cin >> t;
int a, b, c;
while (t--) {
cin >> a >> b >> c;
double s;
s = pow(a, exp(1));
s /= b;
cout << fixed << setprecision(c) << s << endl;
}
return 0;
}
以上是关于小白1-2的主要内容,如果未能解决你的问题,请参考以下文章