Run ID:101798

提交时间:2024-12-18 21:18:10

#include <iostream> #include <iomanip> // 用于设置输出精度 using namespace std; int main() { double iq = 100.0; int b = 10; double iq = iq / pow(2, b - 1); cout << fixed << setprecision(6) << iq << endl; return 0; }