- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
#include <cs50.h>
#include <stdio.h>
float sine(float a, float b);
int main()
{
printf ("Choose an option:\n1- Sin\n2-Cos\n3-Tan\n");
int option = get_int();
if (option==1)
{
printf("What is the hypotnuse of the triangle?\n");
float hypotnuse = get_float();
printf("What is the opposite side of the triangle?\n");
float opposite = get_float();
sine(opposite, hypotnuse);
printf ("The answer is %f", sine);
}
// else … cosine, tangent
}
float sine(float a, float b)
{
return a/b;
}
无论我为 hypotnuse
和 opposite
提供什么值,我得到的输出都是 0.000000
。请解释一下代码有什么问题?
最佳答案
sine
是函数 sine()
的地址。
您必须使用函数sine()
的返回值:
float result = sine(opposite, hypotnuse);
printf("The answer is %f\n", result);
在 C 语言中有不同的方法可以做到这一点,另一个例子是像 jonathan-leffler 提议的那样“即时”使用结果:
printf("sine(%f, %f) = %f\n", opposite, hypotnuse, sine(opposite, hypotnuse));
这是有效的,因为对函数 sine()
的调用结果作为参数直接发送到 printf()
。
关于c - 为什么我的程序打印 0 而不是计算出的正弦值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44391014/
我写的函数有问题。想法是使用 taylor 展开而不是 js 数学对象来计算 sin 和 cosin 值(在 radians 上运行) .这些是方程式: sin(x) = (x^1)/1! - (x^
我不知道这是编程还是数学问题,但我整理了一些FFT的简短示例。我加载了440hz的波并在顶部添加了一些正弦波,但是由于某种原因,频谱中存在一个我不理解的“波”。 据我了解,频谱应该具有相同的| Y(f
这个问题在这里已经有了答案: Java Math.cos(Math.toRadians()) returns weird values (4 个答案) 关闭 10 年前。 我正在编写一个程序,我必须
我想在 ios4 中实现一个正弦和余弦计算器: if([operation isEqual:@"sin"]){ operand = (operand*M_PI/180.0); oper
我使用 256 个元素为 VHDL 制作了一个正弦 LUT。 我使用 MIDI 输入,因此值范围为 8.17Hz(注 #0)到 12543.85z(注 #127)。 我有另一个 LUT 计算必须发送到
我想在ios4中实现一个正弦和余弦计算器: if([operation isEqual:@"sin"]){ operand = (operand*M_PI/180.0); operan
我是一名优秀的程序员,十分优秀!