Printf()和Scanf()的*修饰符
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Printf()和Scanf()的*修饰符相关的知识,希望对你有一定的参考价值。
#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()的*修饰符的主要内容,如果未能解决你的问题,请参考以下文章