向大佬请教
#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)
{
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;
}
用DEVC++输入这代码显示 ssebtr1.h: No such file or directory #include "ssebtr1.h"这是神马鬼,你确认有这个文件??? 本帖最后由 jhq999 于 2021-9-2 15:59 编辑
假如头文件不在指定的默认目录底下,那么必须带完全路径,比如:
头文件1.h在不是默认目录的e:\\1里面,必须#include "e:\\1\\1.h"
当然,你不嫌麻烦就算是在默认目录里,你也可以带完全路径。
页:
[1]