Skip to content

输出

printf

格式化输出,可以沿用 C 语言里的 printf 函数。

d(decimal)代表整形,lf(long float)代表高精度浮点型。

cpp
#include <cstdio>
int main() {
	int num = 10;
	printf("%.2lf", num / 3.0);
	return 0;
}

格式化符号

格式化符号描述
%d or %i整数
%u无符号整数
%o八进制整数
%x十六进制大写整数
%X十六进制小写整数
%f单精度浮点数
%lf高精度浮点数
%e or %E科学计数
%g原始经度浮点数
%p十六进制地址
%c无符号字符
%s字符串
%ld长整形数字

cout

也可以使用 C++中引入的 cout 语句。

cpp
#include <iostream>
using namespace std;
int main() {
	int num;
	cout<<"Hello C++";
	return 0;
}