如何在 cs50 ide 中包含和使用 math.h 库
How to include and use math.h library in cs50 ide
我试过 运行 一个程序,我在代码块中解决了这个程序,并使用哈佛大学的 cs50 ide 中的 math.h 库(基于 Ubuntu)。它给我一个不包含库的错误。如何添加到我的 cs50 ide..?
您是否将其包含在编译中?
最简单的方法是编译:make filename
如果这不起作用,请检查您是否正确添加了它:#include
使用#include <math.h>
包含它
我试过 运行 一个程序,我在代码块中解决了这个程序,并使用哈佛大学的 cs50 ide 中的 math.h 库(基于 Ubuntu)。它给我一个不包含库的错误。如何添加到我的 cs50 ide..?
您是否将其包含在编译中?
最简单的方法是编译:make filename
如果这不起作用,请检查您是否正确添加了它:#include
使用#include <math.h>
包含它