重要提示:請(qǐng)勿將賬號(hào)共享給其他人使用,違者賬號(hào)將被封禁!
查看《購(gòu)買(mǎi)須知》>>>
首頁(yè) > 計(jì)算機(jī)類(lèi)考試> 計(jì)算機(jī)二級(jí)> C++
網(wǎng)友您好,請(qǐng)?jiān)?span id="t2qrbkt" class="prompt_bold">下方輸入框內(nèi)輸入要搜索的題目:
請(qǐng)輸入或粘貼題目?jī)?nèi)容 搜題
搜題
拍照、語(yǔ)音搜題,請(qǐng)掃碼下載APP
掃一掃 下載APP
題目?jī)?nèi)容 (請(qǐng)給出正確答案)
[主觀(guān)題]

閱讀以下程序: include<iostream.h> void main() { static int a[][3]={9,7,5,3,1,2,4,6,8}; int

閱讀以下程序:

include<iostream.h>

void main()

{

static int a[][3]={9,7,5,3,1,2,4,6,8};

int i,j,s1=0,s2=0;

for(i=0;i<3;i++)

for(j=0;j<3;j++)

{

if(i==j)s1=sl+a[i][j];

if(i+j==2)s2=s2+a[i][j];

}

cout<<s1<<","<<s2<<endl;

}

則該程序的輸出結(jié)果為【 】。

答案
查看答案
更多“閱讀以下程序: include<iostream.h> void main() { static int a[][3]={9,7,5,3,1,2,4,6,8}; int”相關(guān)的問(wèn)題

第1題

閱讀以下程序#include<iostream.h>void main(){charline[10];in>>line;cout<<line<<endl;}如運(yùn)行

閱讀以下程序 #include<iostream.h> void main() { charline[10]; in>>line; cout<<line<<endl; } 如運(yùn)行時(shí)輸入This is an example.<CR>,則程序的輸出結(jié)果是()。

A.This

B.This is

C.This is a

D.This is an example.

點(diǎn)擊查看答案

第2題

閱讀以下程序: #include main()

A.定義語(yǔ)句出錯(cuò),case是關(guān)鍵字,不能用做用戶(hù)自定義標(biāo)識(shí)符

B.定義語(yǔ)句出錯(cuò),printF不能用做用戶(hù)自定義標(biāo)識(shí)符

C.定義語(yǔ)句無(wú)錯(cuò),scanf不能作為輸入函數(shù)使用

D.定義語(yǔ)句無(wú)錯(cuò),printf不能輸出case的值

點(diǎn)擊查看答案

第3題

請(qǐng)閱讀以下程序:#include<stdio.h>main(){ int x=1,y=0,a=0,b=0;switch(x){ case 1:switch(y){ case 0:a++;break; }case 2:a++,b++;break; }printf(" a=%d,b=%d\n",a,b);上面程序的輸出結(jié)果是

A.a=2,b=1

B.a=1,b=1

C.a=1,b=0

D.a=2,b=2

點(diǎn)擊查看答案

第4題

閱讀以下程序及對(duì)程序功能的描述,其中正確的描述是#include <stdio.h>main(){ FILE *in,*o

閱讀以下程序及對(duì)程序功能的描述,其中正確的描述是#include <stdio.h>main(){ FILE *in,*out; char ch,infile[10],outfile[10]; printf("Enter the infile name:\n"); scanf("%s",infile); printf("Enter the outfile name:\n"); scanf("%s",outfile); if((in=fopen(infile,"r"))==NULL) { printf("cannot open infile\n"); exit(0); } if((out=fopen(outfile,"w"))==NULL) { printf("cannot open outfile\n"); exit(0); } while(! feof(in))fputc(fgetc(in),out); fclose(in); fclose(out);}A.程序完成將磁盤(pán)文件的信息在屏幕上顯示的功能B.程序完成將兩個(gè)磁盤(pán)文件合二為一的功能C.程序完成將一個(gè)磁盤(pán)文件復(fù)制到另一個(gè)磁盤(pán)文件中D.程序完成將兩個(gè)磁盤(pán)文件合并后在屏幕上輸出

點(diǎn)擊查看答案

第5題

閱讀下列程序,則在執(zhí)行后,程序的運(yùn)行結(jié)果為#include"stdio.h"#include"string.h"main(){ char a[

閱讀下列程序,則在執(zhí)行后,程序的運(yùn)行結(jié)果為 #include"stdio.h" #include"string.h" main() { char a[30]="nice to meet you!"; strcpy(a+strlen(a)/2,"you"); printf("%s\n",a);}

A.nice to meet you you

B.nice to

C.meet you you

D.nice to you

點(diǎn)擊查看答案

第6題

閱讀下面的程序,當(dāng)程序在執(zhí)行時(shí),如果輸入的是 ’a’ ,則輸出結(jié)果為 。 #include void main(); } }

A.a(chǎn)bother letter

B.bbother letter

C.bother letter

D.a(chǎn)bother letterb

點(diǎn)擊查看答案

第7題

閱讀下列程序段,則程序的輸出結(jié)果為#include "stdio.h"#define M(X,Y)(X)*(Y)#define N(X,Y)(X)/(Y)main(){ int a=5,b=6,c=8,k;k=N(M(a,b),c);printf("%d\n",k);

A.3

B.5

C.6

D.8

點(diǎn)擊查看答案

第8題

閱讀以下說(shuō)明和C語(yǔ)言函數(shù),將應(yīng)填入(n)處的語(yǔ)句寫(xiě)在對(duì)應(yīng)欄內(nèi)?!菊f(shuō)明】 本程序利用非遞歸算法實(shí)現(xiàn)二

閱讀以下說(shuō)明和C語(yǔ)言函數(shù),將應(yīng)填入(n)處的語(yǔ)句寫(xiě)在對(duì)應(yīng)欄內(nèi)。

【說(shuō)明】

本程序利用非遞歸算法實(shí)現(xiàn)二叉樹(shù)后序遍歷。

【函數(shù)】

include<stdio.h>

include<stdlib.h>

typedef struct node{/*二叉樹(shù)的結(jié)點(diǎn)數(shù)據(jù)結(jié)構(gòu)類(lèi)型*/

char data;

struct node *left;

struct node *right;

}BTREE;

void SortTreelnsert(BTREE **tree, BTREE *s)

{

if(*tree==NULL)*tree=s;

else

if(s->data<(*tree)->data)

SortTreelnsert((1),s);

else if(s->data>=(*tree)->data)

SortTreelnsert((2),s);

}

void TraversalTree(BTREE *tree)

{

BTREE *stack[1 000],*p;

int tag[1000],top=0;

p=tree;

do{

while(p !=NULL)

{

stack[++top]=p;

(3);

tag[top]=0; /*標(biāo)記棧頂結(jié)點(diǎn)的左子樹(shù)已進(jìn)行過(guò)后序遍歷*/

}

while(top>0&&(4))/*棧頂結(jié)點(diǎn)的右子樹(shù)是否被后序遍歷過(guò)*/

{

p=stack[top--];

putchar(p->data);

}

if(top>0)/*對(duì)棧頂結(jié)點(diǎn)的右子樹(shù)進(jìn)行后序遍歷*/

{

(5);

tag[top]=1;

}

}while(top>0);

}

void PrintSortTree(BTREE *tree)

{

if(tree !=NULL)

{

printSortTree(tree->left);

putchar(tree->data);

pdntSortTree(tree->right);

}

}

main()

{

BTREE *root=NULL, *node;

char ch;

ch=getchar();

while(ch !='')

{

node=(BTREE*)malloc(sizeof(BTREE));

node->data=ch;

node->left=node->right=NULL;

SortTreelnsert(&root, node);

ch=getchar();

}

PrintSortTree(root);

putchar('\n');

TraversalTree(root);

}

點(diǎn)擊查看答案

第9題

有以下程序 #includemain(); } 程序運(yùn)行后的輸出結(jié)果是

A.-1,0

B.0,0

C.-1,-1

D.1,1

點(diǎn)擊查看答案

第10題

有以下程序: #include void fun()

A.321678

B.876543

C.1098765

D.345678

點(diǎn)擊查看答案

第11題

有以下程序 #include#includevoid fun(); } 程序運(yùn)行后的輸出結(jié)果是

A.012345

B.876543210

C.876543

D.012345678

點(diǎn)擊查看答案
下載APP
關(guān)注公眾號(hào)
TOP
重置密碼
賬號(hào):
舊密碼:
新密碼:
確認(rèn)密碼:
確認(rèn)修改
購(gòu)買(mǎi)搜題卡查看答案
購(gòu)買(mǎi)前請(qǐng)仔細(xì)閱讀《購(gòu)買(mǎi)須知》
請(qǐng)選擇支付方式
微信支付
支付寶支付
點(diǎn)擊支付即表示你同意并接受《服務(wù)協(xié)議》《購(gòu)買(mǎi)須知》
立即支付
搜題卡使用說(shuō)明

1. 搜題次數(shù)扣減規(guī)則:

備注:網(wǎng)站、APP、小程序均支持文字搜題、查看答案;語(yǔ)音搜題、單題拍照識(shí)別、整頁(yè)拍照識(shí)別僅APP、小程序支持。

2. 使用語(yǔ)音搜索、拍照搜索等AI功能需安裝APP(或打開(kāi)微信小程序)。

3. 搜題卡過(guò)期將作廢,不支持退款,請(qǐng)?jiān)谟行趦?nèi)使用完畢。

請(qǐng)使用微信掃碼支付(元)

訂單號(hào):

遇到問(wèn)題請(qǐng)聯(lián)系在線(xiàn)客服

請(qǐng)不要關(guān)閉本頁(yè)面,支付完成后請(qǐng)點(diǎn)擊【支付完成】按鈕
遇到問(wèn)題請(qǐng)聯(lián)系在線(xiàn)客服
恭喜您,購(gòu)買(mǎi)搜題卡成功 系統(tǒng)為您生成的賬號(hào)密碼如下:
重要提示:請(qǐng)勿將賬號(hào)共享給其他人使用,違者賬號(hào)將被封禁。
發(fā)送賬號(hào)到微信 保存賬號(hào)查看答案
怕賬號(hào)密碼記不???建議關(guān)注微信公眾號(hào)綁定微信,開(kāi)通微信掃碼登錄功能
請(qǐng)用微信掃碼測(cè)試
優(yōu)題寶