1

不知道问题出在哪里,但我一直得到 0 的结果。预期的结果是 0.2222222。我想我必须将零分配给我的一个变量,但我不知道这是在哪里发生的。任何帮助,将不胜感激。谢谢

#include <stdio.h>
#include <math.h>

int main()
{
    double vs = 10;
    double rs = 100;
    double rl_start = 50;
    double rl_stop = 150;
    double rl_step = 5;

    double i, j;
    double n = rl_start;
    int count;

    do
    {
        j = ((rl_start) + (rl_step * count));
        i = (pow(vs, 2) * j) / pow((rs + j),2);
        printf("%lf", i);
        count++;

    }while(j <= rl_stop);

    return 0;
}
4

1 回答 1

6

使用前需要初始化countint count = 0;

于 2012-05-08T04:43:47.683 回答