itgle.com
参考答案和解析
正确答案:A
更多“下列输出字符,A,的方法中,()是错误的。A.cout <<put ('A');B.cout<<'A';C.cort. put ('A');D.char ”相关问题
  • 第1题:

    类ostream的成员函数【 】用于执行无格式输出,成员函数put用于输出单个字符。


    正确答案:write
    write

  • 第2题:

    下列输出语句中,不正确的是()。

    A.cout<<’tn ’;

    B.cout<<0x20;

    C.cout.put('O');

    D.cout<<’A’;


    cout<

  • 第3题:

    下列输出字符 d 的方法中, ()是错误的。

    A.cout<<put('d');

    B.cout<<'d';

    C.cout.put('d');

    D.char a='d'; cout<<a;


    cout<

  • 第4题:

    下面程序的输出结果是()。includeusing namespace std;void main(){char cl='a',c2='c

    下面程序的输出结果是( )。 #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


    正确答案:B
    解析:分析该题,输出字符“a”,“c”和换行,然后再输出“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); }


    if (map.containsKey(ch[i])) { map.put(ch[i], (Integer)map.get(ch[i]) + 1); } else { map.put(ch[i], 1); }