欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

c语言printf()函数几种常见输出格式

程序员文章站 2022-07-15 09:05:57
...

c语言printf()函数几种常见输出格式

#include<bits/stdc++.h>
using namespace std;

int main() {
	float n= 0.15632000;
	printf("%d\n",n);
	printf("%f\n",n);
	printf("%x\n",&n);
	printf("%f\n", 1.0/2);
	printf("%g\n", 1.0/2);
	printf("%lf\n",n);
	printf("%.2f\n",n);
	printf("%8.2f%8.2f\n",n, n);
	printf("%-8.2f%-8.2f\n",n, n);
	printf("%f%%\n",n*100);
	return 0;
} 

输出结果

1073741824
0.156320
6ffe1c
0.500000
0.5
0.156320
0.16
    0.16    0.16
0.16    0.16
15.632001%
相关标签: c语言