itgle.com
更多“有以下程序# include <stdio.h># define N 5# define M N+1# define f(x) (x*M)main( ”相关问题
  • 第1题:

    在C程序中如果要使用数学函数,如sqrt(x),pow(x,y)等,需要在程序中加入的语句是______

    A.#define <math.h>

    B.#define <stdio.h>

    C.#include <stdio.h>

    D.#include <math.h>


    C

  • 第2题:

    2、在C程序中如果要使用数学函数,如sin(x),log(x)等,需要在程序中加入的语句是

    A.#include <math.h>

    B.#include <stdio.h>

    C.#define <math.h>

    D.#define <stdio.h>


    A

  • 第3题:

    在C程序中如果要使用数学函数,如sin(x),log(x)等,需要在程序中加入的语句是________。

    A.#include <math.h>

    B.#include <stdio.h>

    C.#define <math.h>

    D.#define <stdio.h>


    C

  • 第4题:

    16、在C程序中如果要使用数学函数,如sin(x),log(x)等,需要在程序中加入的语句是

    A.#include <math.h>

    B.#include <stdio.h>

    C.#define <math.h>

    D.#define <stdio.h>


    #include

  • 第5题:

    在C程序中如果要使用数学函数,如sin(x),log(x)等,需要在程序中加入的语句是()

    A.#include <stdio.h>

    B.#define <stdio.h>

    C.#include <math.h>

    D.#define <math.h>


    #include

  • 第6题:

    define能作简单的替代,用宏替代计算多项式4*x*x+3*x+2之值的函数f,正确的宏定义是()。

    A.#define f (x) 4*x*x+3*x+2

    B.#define f 4*x*x+3*x+2

    C.#define f(a) (4*a*a+3*a+2)

    D.#define (4*a*a+3*a+2) f(a)


    #define f (x) 4*x*x+3*x+2