摘要: 二十二、保留小数 #include <iostream> #include <iomanip> using namespace std; int main(){ int a,b; cin>>a>>b; cout<<fixed<<setprecision(3)<<(double)a/b; return 阅读全文
posted @ 2025-09-04 20:05 jch123456 阅读(6) 评论(0) 推荐(0)