?? 717.cpp
字號:
//717.CPP demo iostream
#include <iostream.h>
main(void)
{
float a=100100.0, b=0.08;
cout.setf(ios::right|ios::scientific|ios::showpoint);
cout.width(20); cout <<(-a*b);
cout.width(20);cout<<(a/b)<<endl;
cout.fill('$'); cout.precision(4);
cout.width(20); cout <<(-a*b);
cout.width(20);cout<<(a/b)<<endl;
return 0;
}
/*程序運行的結果:
-8.008000e+03 1.251250e+06
$$$$$$$$$-8.0080e+03$$$$$$$$$$1.2512e+06
*/
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -