--Your phone number again? I _______ quite catch it.A.don'tB.can'tC.couldn'tD.didn't

题目
--Your phone number again? I _______ quite catch it.

A.don't

B.can't

C.couldn't

D.didn't


相似考题
更多“--Your phone number again? I _______ quite catch it. ”相关问题
  • 第1题:

    hiding_number=phone_number.replace(phone_number[:9],'*'*9)这句表达式所起的作用是()。

    A.将一串手机号码只保留后四位

    B.将一串手机号码只保留后四位,前9位用*号替代

    C.将一串字符前9个用9个*号替换

    D.将一串字符前9个用9个*号替换,后面保留不变


    参考答案:D

  • 第2题:

    下面程序的输出结果是 public class Test{ public static void main(String[] args){ int[]array={2,4,6,8,10}; int size=6; int result=-1: try{ for(int i=0;i<size&&result==-1;i++) if(array[i]==20)result=i; }catch(ArithmeticException e){ System.out.println("Catch---1"); }catch(ArrayIndexOutOfBoundsException e){ System.out.println("Catch---2"); }catch(Exception e){ System.out.println("Catch---3"); } } }

    A.Catch---1

    B.Catch一--2

    C.Catch---3

    D.以下都不对


    正确答案:B
    解析:ArithmeticException是当出现异常的运算条件时,抛出此异常。例如,一个整数“除以零”时,是抛出此类的一个实例;ArrayIndexOutOfBoundsException是用非法索引访问数组时抛出的异常。如果索引为负或大于等于数组大小,则该索引为非法索引。本程序中,数组大小为5个元素,数组下标为0~4,而循环为0~5,数组越界,所以会捕获ArrayIndexOutOfBoundsException。

  • 第3题:

    如果有如一些的程序代码 int i =10; int number=i++; number=--i;以下说法正确的是

    A.执行后number为10,i为10

    B.执行后number为10,i为11

    C.执行后number为11,i为10

    D.执行后number为11,i为11


    执行后number为10,i为10

  • 第4题:

    如下程序声明了一个电话号码类PhoneNumber,重载了流插入运算符<<,以便于电话号码的输出。请将程序补充完整。

    include<iostream>

    include<iomanip>

    include<string>

    using namespace std;

    class PhoneNumber{

    public:

    void setNumber(string number) {this-->number = number;}

    //重载流插入操作符

    friend【 】(ostream &output,const PhoneNumber &num)

    { output<<num. number; return output; }

    private:

    string number;

    };

    int main() {

    PhoneNumber phone;

    phone. setNumber("8008100598");

    cout<<"The phone number is:"<<phone<<endl;

    return 0;

    }


    正确答案:PhoneNumber Opcrator
    PhoneNumber Opcrator 解析:运算符重载的方法是定义一个重载运算符的函数,在需要执行被重载的运算符时,系统就自动调用该函数,以实现相应的运算。运算符重载实质上是函数的重载。重载运算符的函数一般格式为:函数类型operator运算符名称(形参列表){对运算符的重载处理},即函数名是由operator和运算符组成,如operator+意思是“对运算符+重载”。所以重载流插入操作符为:PhoneNumber Operator,其中符号“”为输出符。

  • 第5题:

    ( 17 )下列程序的输出结果是

    public class Test{

    public static void main(String[] args){

    int [] array={2,4,6,8,10};

    int size=6;

    int result=-1;

    try{

    for{int i=0;i<size && result==-1;i++}

    if(array[i]==20) result=i;

    }

    catch(ArithmeticException e){

    System.out.println( " Catch---1 " );

    catch(ArrayIndexOutOfBoundsException e){

    System.out.println( " Catch---2 " );

    catch(Exception e){

    System.out.println( " Catch---3 " );

    }

    }

    A ) Catch---1

    B ) Catch---2

    C ) Catch---3

    D )以上都不对


    正确答案:U

    答案暂缺

  • 第6题:

    1、如果有如一些的程序代码 int i =10; int number=i++; number=--i;以下说法正确的是

    A.执行后number为10,i为10

    B.执行后number为10,i为11

    C.执行后number为11,i为10

    D.执行后number为11,i为11


    执行后number为10,i为10