scanf作用
scanf将键盘输入的字符串根据转换规范,转换成二进制表示的整数、浮点数、字符或
字符串等。
根据用户的输入 赋值给程序的数据
举个例子
#include <stdio.h>
int main()
{
char c;
short s;
int n;
long l;
float f;
double df;
scanf("%hhd %hd %d %ld %f %lf", &c, &s, &n, &l, &f, &df);
printf("%d %d %d %d %f %f\n", c, s, n, l, f, df);
return 0;
}
运行程序后,在键盘输入:“11 22 33 42 5.6 71.8”。scanf函数,将字符串"1 2 3 4 5.6 7.8",根据转换规范,
分别转换为各类二进制数据,并存储到变量中
scanf的规范点
- scanf是一个变参函数。
scanf("%hhd %hd %d %ld %f %lf", &c, &s, &n, &l, &f, &df);
scanf("%d %ld %f %lf", &c, &l, &f, &