下列输出字符,A,的方法中,( )是错误的。
A.cout <<put ('A');
B.cout<<'A';
C.cort. put ('A');
D.char A='A';cout<<A;
第1题:
类ostream的成员函数【 】用于执行无格式输出,成员函数put用于输出单个字符。
第2题:
下列输出语句中,不正确的是()。
A.cout<<’tn ’;
B.cout<<0x20;
C.cout.put('O');
D.cout<<’A’;
第3题:
下列输出字符 d 的方法中, ()是错误的。
A.cout<<put('d');
B.cout<<'d';
C.cout.put('d');
D.char a='d'; cout<<a;
第4题:
下面程序的输出结果是( )。 #include<iostream> using namespace std; void main() { char cl='a',c2='c'; cout.put('a').put('c').put('\n'); cout.put(c1).put(c2); }
A.ac a c
B.ac ac
C.a c ac c
D.a c
第5题:
下面的代码用于输出字符数组ch中每个字符出现的次数,应该填入的代码是()public static void main(String[] args) { char[] ch = { 'a', 'c', 'a', 'b', 'c', 'b' }; HashMap map = new HashMap(); for (int i = 0; i < ch.length; i++) { < 填入代码 > } System.out.println(map); }
A.if (map.contains(ch[i])) { map.put(ch[i], map.get(ch[i]) + 1); } else { map.put(ch[i], 1); }
B.if (map.contains(ch[i])) { map.put(ch[i], (Integer) map.get(ch[i]) + 1); } else { map.put(ch[i], 1); }
C.if (map.containsKey(ch[i])) { map.put(ch[i], (int) map.get(ch[i]) + 1); } else { map.put(ch[i], 1); }
D.if (map.containsKey(ch[i])) { map.put(ch[i], (Integer) map.get(ch[i]) + 1); } else { map.put(ch[i], 1); }