小甲鱼s1e11
小甲鱼作业答案中hr>max_hr0.85的时候没有加上<max_hr两中不同的情况难道不会同时出现两个结果吗#include <stdio.h>
#include "ssebtr1.h"
int main()
{
int age, max_hr, bpm, hr;
printf("请输入您的年龄:");
scanf("%d", &age);
max_hr = 220 - age;
bpm = 150;
playSound(bpm);
hr = getHeartRate();
if (hr > max_hr)//这里
{
printf("请马上停止跑步,否则会有绳命危险……\n");
}
else if (hr > max_hr * 0.85)//还有zhe'l
{
printf("请放慢脚步\n");
bpm = bpm - 20;
playSound(bpm);
}
else if (hr < max_hr * 0.75)
{
printf("Come on,请加快节奏!\n");
bpm = bpm + 20;
playSound(bpm);
}
else
{
playSound(bpm);
}
return 0;
} 不会,这就是 if ... else 的功能,当满足 if 条件时,忽略 else if 或 else,只执行 if 里的代码 傻眼貓咪 发表于 2022-2-3 01:09
不会,这就是 if ... else 的功能,当满足 if 条件时,忽略 else if 或 else,只执行 if 里的代码
不理解我先记住
页:
[1]