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

Printf()和Scanf()的*修饰符

时间:2016-03-16 01:16:03      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:

 

 

#include<stdio.h>

int main(void)
{
unsigned width,precision;
int number=256;
double weight=242.5;
printf("What field width?\n");
scanf("%d",&width);
printf("The number is: %*d\n",width,number);
printf("Now enter a width and a precision:\n");
scanf("%d %d",&width,&precision);
printf("Weight=%*.*f\n",width,precision,weight);
}

其中修饰符*表示一个变量可以填补进去表示一个数字。

技术分享

 

scanf则提供截然不同的服务

#include<stdio.h>
#define CNBLOG "I love CnBlog"

int main(void)
{

int n;

printf("Please enter three number\n");
scanf("%*d %*d %d",&n);
printf("The last integer was %d\n",n);
}

此时仍然需要读入3个数字 但是只有最后一个 放入n 

 

技术分享

 

Printf()和Scanf()的*修饰符

标签:

原文地址:http://www.cnblogs.com/HJL085/p/5281857.html

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