itgle.com

设有语句 int n,m; char a[5],b; cin>>n>>a>>m>>b; 为了分别将10和20分别赋给n和m,look赋给a,t赋给b,则正确的输入为A.10 "look" 20 't'<CR>B.10 "look" 10C.10 look 20 tD.10<CR>look20<CR>t<CR>

题目

设有语句 int n,m; char a[5],b; cin>>n>>a>>m>>b; 为了分别将10和20分别赋给n和m,look赋给a,t赋给b,则正确的输入为

A.10 "look" 20 't'<CR>

B.10 "look" 10

C.10 look 20 t

D.10<CR>look20<CR>t<CR>


相似考题
更多“设有语句 int n,m; char a[5],b; cin>>n>>a>>m>>b; 为了分别将10和20分别赋给n和m,l ”相关问题
  • 第1题:

    若变量已正确定义并赋初值,以下合法的赋值语句是()

    A.k+1=(m==n)

    B.k=-m-n

    C.k=int(m+n)

    D.k=m*n=1


    A

  • 第2题:

    12、申请一个m行n列的整型的二维动态数组,可以使用下面的哪条语句?

    A.p = (int *) malloc(m*n*sizeof(int));

    B.p = (int *)calloc(m*n, sizeof(int));

    C.p = (int *) malloc(m*n, sizeof(int));

    D.p = (int *)calloc(m * n * sizeof(int));

    E.int p[m][n];

    F.p = (int *) realloc(m * n * sizeof(int));


    p = (int *) malloc(m*n*sizeof(int));

  • 第3题:

    7、申请一个m×n二维int型动态数组,可以使用语句()。

    A.int *p; p=(int *)calloc(m*n*sizeof(int));

    B.int p[m][n];

    C.int *p; p=(int *)calloc(m*n,sizeof(int));

    D.int *p; p=(int *)malloc(m*n,sizeof(int));


    int *p; p=(int *)calloc(m*n,sizeof(int));

  • 第4题:

    申请一个m行n列的整型的二维动态数组,可以使用下面的哪条语句?

    A.p = (int *) malloc(m*n*sizeof(int));

    B.p = (int *)calloc(m*n, sizeof(int));

    C.p = (int *) malloc(m*n, sizeof(int));

    D.p = (int *)calloc(m * n * sizeof(int));

    E.int p[m][n];

    F.p = (int *) realloc(m * n * sizeof(int));


    A

  • 第5题:

    12、申请一个m行n列的整型的二维动态数组,可以使用下面的哪条语句?

    A.申请一个m行n列的整型的二维动态数组,可以使用下面的哪条语句?

    B.p = (int *)calloc(m*n, sizeof(int));

    C.p = (int *) malloc(m*n, sizeof(int));

    D.p = (int *) malloc(m*n, sizeof(int));

    E.p = (int *) malloc(m*n, sizeof(int));

    F.p = (int *) realloc(m * n * sizeof(int));


    p = (int *) malloc(m*n*sizeof(int));