C++精度问题设置 一种方法cout.precision(n); //n为有效数字个数,即输出精度cout.flags(cout.fixed) //定点,即小数点后有n个有效数字可以用cout<<fixed代替cout.unsetf(cout.fixed) //取消定点法,即变成输出n个有效数字... Other 2023-12-02 36 点赞 0 评论 54 浏览