标签:设计 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 }
标签:设计 code out 技术 float ons info .com c++学习
原文地址:https://www.cnblogs.com/Tobi/p/9250834.html