Whatdoestheunderlinedword"one"inthe3rdparagraphmean?()
A: ThePresident.
B: Thedirector.
C: Anactor.
D: Alook-alike.
A: ThePresident.
B: Thedirector.
C: Anactor.
D: Alook-alike.
举一反三
- 下列对枚举类型的正确定义形式为( ) A: enum a={one,two,three}; B: enum a{one=9,two=-1,three}; C: enum a={"one","two","three"}; D: enum a{"one","two","three"};
- 以下对枚举类型名的定义中,正确的是__________。 A: enum a ={one,two,three}; B: enum a{a1, a2,a3}; C: enum a ={’1’,’2’,’3’}; D: enum a {"one","two","three" };
- 下面的哪些程序片断可能导致错误?( )。 A: String s="Gone with the wind";String t;t=s[3]+"one"; B: String s="Gone with the wind";String t="good";String k=s+t; C: String s="Gone with the wind";String standard=s.toUpperCase(); D: String s="home directory";String t=s-"directory";
- 以下选项中,两个条件语句功能等价的是()。 A: if (a=3) printf("%d ",a);if (a==3) printf("%d ",a); B: if (a-3) printf("%d ",a);if (a!=3) printf("%d ",a); C: if (a) printf("%d ",a); if (a==0) printf("%d ",a); D: if (a-3) printf("%d ",a);if (a==3) printf("%d ",a);
- 在C#中值类型包括枚举类型,关于枚举类型的声明下面的选项哪一下是正确的( )。 A: num c={'1','2','3'}; B: enum a={one,two,three}; C: enum b {a1,a2,a3}; D: enum d{"one","two","three"};