單項(xiàng)選擇題

設(shè)x和y均為int型變量,則執(zhí)行下的循環(huán)后,y值為()for(y=1,x=1;y<=50;y)
{if(x==10))break;
if(x%2==1)
{x=5;continue;}
x-=3;
}

A.2
B.4
C.6
D.8


您可能感興趣的試卷

你可能感興趣的試題

2.單項(xiàng)選擇題

函數(shù)AAA(s,t)
char*s,*t;
{while(*t++);
t--;
while(*t++=*s++);
}
的功能是:()。

A.求串的長(zhǎng)度
B.比較兩個(gè)串的大小
C.將串s復(fù)制到串t中
D.將串s連接到串t中