码迷,mamicode.com
首页 > 其他好文 > 详细

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

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

标签:style   blog   http   color   使用   io   for   2014   

*号的使用

 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

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

标签:style   blog   http   color   使用   io   for   2014   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!