Run ID:95592

提交时间:2024-10-30 19:50:42

#include<iostream> #include<cstdio> using namespace std; int main() { double num = 3.14159; std::cout << std::fixed << std::setprecision(2) << num << std::endl; return 0; }