scientific
使用科學標記法,造成浮點隨即顯示。
ios_base& scientific(
ios_base& _Str
);
參數
- _Str
參考型別 ios_base物件,或是從 ios_base繼承的型別。
傳回值
在 _Str 衍生物件的參考。
備註
根據預設, 內建 標記法實際上是浮點數值。
操作工具有效地呼叫 _Str.setf(ios_base::scientific, ios_base::floatfield),然後傳回 _Str。
範例
// ios_scientific.cpp
// compile with: /EHsc
#include <iostream>
int main( )
{
using namespace std;
float i = 100.23F;
cout << i << endl;
cout << scientific << i << endl;
}
需求
標題: <ios>
命名空間: std