码迷,mamicode.com
首页 > 编程语言 > 详细

C++学习(36)

时间:2018-07-01 18:59:12      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:设计   code   out   技术   float   ons   info   .com   c++学习   

 1 //设计一个有参数操作符使用方法的例子
 2 #include<iostream.h>
 3 #include<iomanip.h>
 4 int main(){
 5     const double PI=3.141592653589793;
 6     cout<<"PI="<<setprecision(10)<<PI<<endl;
 7 
 8     int k;
 9     cin>>oct>>k;
10     cout<<"k="<<hex<<k<<endl;
11 
12     float d=324.567;
13     cout<<"d="<<setw(10)<<setprecision(5)<<setfill(*)<<dec<<d<<endl;
14 
15     return 0;
16 }

 

技术分享图片

C++学习(36)

标签:设计   code   out   技术   float   ons   info   .com   c++学习   

原文地址:https://www.cnblogs.com/Tobi/p/9250834.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!