Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在 Xcode(Apple 的 Mac IDE)上进行 C 编程,并遵循 Big Nerd Ranch 的 Objective C 编程指南指南。挑战问题之一是使用 C 中的库来显示 1 弧度的正弦。我导入了 math.h 并做了
双罪=罪(3.14);
但它给了我一个错误。
1 弧度不是 pi,它是 1。
您不能使用作为函数名称的变量名称。
你要
double myValue = sin(1.0);
不要将变量命名为与函数相同的名称。
尝试
double s = sin(3.14);