|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
这里的#include"ssebtr1.h"是什么意思啊
还有 调用这个函数playSound(bpm)是什么意思
注:由于该函数名是小甲鱼杜撰出来的,所以在你的系统无法运行是正常滴^_^
#include <stdio.h>
#include "ssebtr1.h"
int main()
{
int age, max_hr, bpm, hr; // hr即HeartRate,心率的意思
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)
{
printf("请放慢脚步\n");
bpm = bpm - 20; // 注意,这里需要先修改bpm的值
playSound(bpm); // 你不能在这里传入bpm-20
}
else if (hr < max_hr * 0.75)
{
printf("Come on,请加快节奏!\n");
bpm = bpm + 20;
playSound(bpm);
}
else
{
playSound(bpm);
}
return 0;
} |
|