c++ cout 格式輸出

心鑫發表於2014-01-22
void coutSetf() {
	int c = 100;
	cout << c << endl;
	cout.setf(ios_base::hex); //指定 輸出的格式
	cout << c << endl;
	cout.setf(ios_base::dec);
	cout.precision(5); //指定輸出的精度
	float f = 10.4546;
	cout << f << endl;
	bool b = true;
	cout.setf(ios_base::boolalpha);
	cout << b << endl;
}

輸出結果:

100
100
10.455
true


相關文章