求解:多项式的求值

#include<stdio.h>

int main (void)
{
    float result;
    float x = 2.55;

    result = 3 * x * x * x + 5 * x * x + 6;

    printf(result = %f\n, result);

    return 0;
}

相关文章

for遍历数组
。。。
声明一个计数循环
咕咕咕
#include <stdio.h> int main (void) { printf (&quo...