下列语句中错误的是()。
A:
B: define PI=3.1415926
C:
D: include "math.h"
E: if(2);
F: for(;;)if(1)break;
A:
B: define PI=3.1415926
C:
D: include "math.h"
E: if(2);
F: for(;;)if(1)break;
举一反三
- 在下列代码中,错误的 C 代码是( ) A: B: define PI 3.14159 C: D: include“stdio.h”; E: if(2); F: for(;;) if(1) break;
- 下列#include命令中,正确的是________。 A: B: include "math.h" C: D: include [math.h] E: F: include (math.h) G: H: include {math.h}
- #define PI 3.1415926是一条C语句。
- 在C#中,下列常量定义正确的是 A: define PI 3.1415926 B: Const double PI=3.1415926 C: Const double PI 3.1415926 D: define double PI=3.1415926
- 在C程序中如果要使用数学函数,如sin(x),log(x)等,需要在程序中加入 A: B: include <;math.h>; C: D: include <;stdio.h>; E: F: define <;math.h>; G: H: define <;stdio.h>;