程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> 新手-c++結果精確到小數點後三位

新手-c++結果精確到小數點後三位

編輯:編程解疑
c++結果精確到小數點後三位

#include
using namespace std;
int main()
{
int r,h;
cout<<"please input two number:"<<'\n';
cin>>r>>h;
cout<<"radious:"<<r<<"high:"<<h<<endl;
double v=3.14*r*r*h;
cout<<"The volume is:"<<v<<endl;
return 0;
}幫我改改,讓體積的結果精確到小數點後三位,謝謝!

最佳回答:


體積那句改為:cout << "The volumn is:" << fixed << setprecision(3) << v << endl;

qq_33486292
cxsmarkchan
qq_33486292
cxsmarkchan
qq_33486292
qq_33486292
cxsmarkchan
cxsmarkchan
qq_33486292
qq_33486292
cxsmarkchan
cxsmarkchan
qq_33486292
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved