博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
int float string按宽度精度输出
阅读量:6258 次
发布时间:2019-06-22

本文共 781 字,大约阅读时间需要 2 分钟。

 

 

 

1 #include 
2 3 int main(void) 4 { 5 int a = 99; 6 float b = 9.9; 7 char c[] = "hello"; 8 9 printf("*%010d*\n", a);10 printf("*%10.3d*\n", a);11 printf("*%-10.3d*\n", a);12 printf("*%010.3d*\n", a);13 printf("*%-010.3d*\n", a);14 printf("------------\n");15 printf("*%010f*\n", b);16 printf("*%10.3f*\n", b);17 printf("*%-10.3f*\n", b);18 printf("*%010.3f*\n", b);19 printf("*%-010.3f*\n", b);20 printf("------------\n");21 printf("*%010s*\n", c);22 printf("*%10.3s*\n", c);23 printf("*%-10.3s*\n", c);24 printf("*%010.3s*\n", c);25 printf("*%-010.3s*\n", c);26 27 return 0;28 }

 

 

如果0标志和精度说明符在字符串和整数输出中同时出现,那么0标志就会被忽略,但浮点数输出仍会显示

转载于:https://www.cnblogs.com/itpoorman/p/3923042.html

你可能感兴趣的文章
[转] C/C++中printf和C++中cout的输出格式
查看>>
swift 如何实现点击view后显示灰色背景
查看>>
【Android】3.9 覆盖物功能
查看>>
Plus One
查看>>
Git -- 创建版本库
查看>>
myeclipse 怎么安装与激活
查看>>
Atitit.异步编程的发展历史 1.1. TAP & async/await
查看>>
RTP timestamp与帧率及时钟频率的关系
查看>>
企业门户平台解决方案
查看>>
过滤器入门
查看>>
深入浅出讲解:php的socket通信
查看>>
Photoshop 批量处理图片
查看>>
浅谈C# 多态的魅力(虚方法,抽象,接口实现)
查看>>
jQuery--百度百科
查看>>
Unity3D 之2D动画机
查看>>
基础知识系列☞闲言
查看>>
蓝牙Ibeacon室内定位和微信摇一摇周边原理分析
查看>>
架构设计:负载均衡层设计方案(7)——LVS + Keepalived + Nginx安装及配置
查看>>
virtualbox端口转发
查看>>
DiscuzX2.5 程序底层架构
查看>>