[C语言]第三章| 简单的数据处理(二)

[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
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值