A: #define
PI 3.14
B: #include
C: using
namespace std;
D: 以上均不是
举一反三
- 下面程序执行后的输出结果是 。 #include < iostream > using namespace std; #define
- 以下编译预处理命令正确的是( )。 A: define PI 3.14 B: define PI=3.14 C: define PI 3.14; D: define PI=3.14;
- 以下能正确进行常(变)量定义的是(<br/>)。 A: #define<br/>PI=3.14 B: #define PI =3.14; C: const<br/>double pi = 3.14; D: const pi = 3.14;
- 编译预处理命令 A: B: include 包含指令 C: D: define 宏定义指令 E: F: undef G: using name space std
- 下列编译预处理命令中,正确的是( )。 A: define N 0 B: include <iostream.h> C: define PI=3.14 D: include “iostream.h”
内容
- 0
使用标准命名空间的语句是( ); A: using namespace iostream; B: using namespace std; C: include std; D: include iostream;
- 1
2.使用标准命名空间的语句是( )。 A: (A)using namespace std; B: (B)using namespace iostream; C: (C)include std; D: (D)include iostream;
- 2
如想使用std命名空间,正确的程序语句是()。 A: using std; B: namespace std; C: using namespace; D: using namespace std;
- 3
在C语言中定义符号常量正确的是: A: B: define PI=3.14 C: define PI 3.14 D: float PI =3.14 E: F: define PI 3.14
- 4
在下列选项中,没有构成死循环的程序段是______。 A: B: include <;iostream>;using namespace std;void main( ){ int i=2020; while(1) { i=i%100+1;if(i>;100)break; }} C: D: include <;iostream>;using namespace std;void main( ){ for(;;);} E: F: include <;iostream>;using namespace std;void main( ){ int i=36; while(i); --i;} G: H: include <;iostream>;using namespace std;void main( ){int i =10000;do{ ++i;}while(i>;=1000);}