C++标准输出cout

C++标准输出cout

#include "stdafx.h"
#include <iostream>
using namespace std;

#include <iomanip> //流的常用控制符的头文件

//输出 cout
//cout cin是对象

int _tmain(int argc, _TCHAR* argv[])
{

#if 0

	//系统提供的相关函数
	cout.unsetf(ios::dec); //关闭默认输出的十进制
	cout.setf(ios::hex); //开启输出十六进制
	cout << 1234 << endl;

#endif

	cout << 23.0 << endl;
	cout << setiosflags(ios::showpoint) << -23.0 << endl;
	//显示相关的负号和0


	//setiosflags(ios::showpos) 显示加号+
	cout << setiosflags(ios::showpos) << setiosflags(ios::showpoint) << 23.0 << endl;

	//使用科学计数法显示
	cout << setiosflags(ios::scientific) << 12121221.3434 << endl;

	cout << setiosflags(ios::fixed) << 12121221.3434 << endl;

	//设置精度个数(有效数字)
	double d = 12.345678;
	cout << setprecision(2) << d << endl;

	//将字母大写
	cout << hex << 1234 << endl;
	cout << setiosflags(ios::uppercase) << hex << 1234 << endl;
	cout << resetiosflags(ios::uppercase) << hex << 1234 << endl;

	//输出abc cout<<a<<b<<c;
	cout.put('a').put('b').put('c');

	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值