首页 > 其他 > 详细

指定精确度(*号的使用)

时间:2014-08-19 23:51:05      阅读:437      评论:0      收藏:0      [点我收藏+]

*号的使用

 1 #include <stdio.h>
 2 
 3 int main(void)
 4 {
 5     unsigned width, precision;
 6     float height;
 7     printf("Please enter you height(enter a tag before):\n");
 8     scanf("%*s %f", &height);
 9     printf("Please enter width and precision:\n");
10     scanf("%d %d", &width, &precision);
11     printf("your weight: --%*.*f--\n", width, precision, height);
12 }

bubuko.com,布布扣

 

指定精确度(*号的使用),布布扣,bubuko.com

指定精确度(*号的使用)

原文:http://www.cnblogs.com/itpoorman/p/3923485.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!