[C语言]第三章| 简单的数据处理(二)
[摘要]
1.数据输入—— scanf
2.<limits.h>和sizeof()
第一部分. 数据输入
1.首先,我们来看一个例子
#include<stdio.h>
int main()
{
//数据输入1
int num1 ;
double num2;
printf("please input:\n");
scanf("%d %lf",&num1, &num2);
printf("the number:\n%d\n%lf\n",num1,num2);
return 0;
}
2.代码分析
[运行结果]
please input:
1 2
the number:
1
2.000000
[用scanf输入]
scanf("%d %lf",&num1, &num2);
(1)输入的数据类型(如:%d,%lf等)需与被输入的变量类型(如:num1为int型)对应。
(2)不要忘了添加&号。
(3)两个输入数据之间用空格隔开或用enter键隔开。
第二部分. <limits.h>和sizeof()
1. <limits.h>
代码示例:
#include<stdio.h>
#include<limits.h>
int main()
{
// 输出int型的最大值
printf("INT_MAX = %d\n",INT_MAX);
// 输出int型的最小值
printf("INT_MIN = %d\n",INT_MIN);
// 输出long long型的最大值
printf("LLONG_MAX = %lld\n",LLONG_MAX);
return 0;
}
运行结果:
INT_MAX = 2147483647
INT_MIN = -2147483648
LLONG_MAX = 9223372036854775807
2.sizeof()
代码示例:
The sizeof operators gives the size of a type or expression in bytes.
#include<stdio.h>
int main()
{
//show the size of int
printf("the size of int is %lu\n",sizeof(int));
//show the size of i
int i;
i=2;
printf("the size of i is %lu\n",sizeof(i));
}
运行结果:
the size of int is 4
the size of i is 4