PTA 7-53 温差
分数 10
作者 李祥
单位 湖北经济学院
某液体某时刻测得的温度为 a,另一时刻测得的温度为 b,请问温差 c 为多少?
输入格式
a 和 b
输出格式
c
注:题目保证 a、b 和 c 的值都在 int 类型的表示范围内。
输入样例1
7 -5
输出样例1
12
输入样例2
35 40
输出样例2
5
要求:使用 C 库函数完成计算,不要使用选择语句。
代码长度限制
16 KB
时间限制
400 ms
内存限制
64 MB
#include <stdio.h>
#include <math.h> //导入数学函数库
int main(){
int a, b, temperature_difference;
//定义当前温度a, 另一时刻温度b, 温差temperature_difference
scanf("%d %d",&a, &b);
temperature_difference = abs(b - a);//绝对值abs()
printf("%d", temperature_difference); //输出温差
}
解题思路:
step1:根据题目输入要求获取两个时刻温度
step2:用数学绝对值函数求温差绝对值
归属知识点:
数学绝对值函数