当前位置:首页 > 行业动态 > 正文

c语言cout怎么用

C语言中的cout是用于输出的流对象,它位于<iostream>头文件中,下面是关于cout的详细用法:

1、引入头文件

#include <iostream>

2、使用cout输出基本数据类型

数据类型 输出方式
int cout
float cout
double cout
char cout
bool cout
wchar_t cout
string cout

3、使用cout输出字符串常量和变量

字符串常量 输出方式
直接输入 cout

| 转义字符 | `cout << "hello" << '

';` |

变量 string str = "hello"; cout

4、使用cout输出格式化字符串

setw()设置宽度

setfill()设置填充字符

setprecision()设置小数位数

fixedscientific设置显示格式

left, right, internal设置对齐方式

示例:

#include <iostream>
#include <iomanip>
#include <string>
using namespace std;
int main() {
    double num = 3.1415926;
    cout << fixed << setprecision(2) << num << endl; // 输出:3.14,保留两位小数
    cout << setw(8) << left << num << endl; // 输出:3.14,左对齐,宽度为8
    return 0;
}

5、使用endl换行并刷新缓冲区

cout << "hello" << endl; // 输出:hello,换行并刷新缓冲区
0