使用当前浏览器访问考试宝,无法享受最佳体验,推荐使用 Chrome 浏览器进行访问。
更新时间: 试题数量: 购买人数: 提供作者:
有效期: 个月
章节介绍: 共有个章节
我的错题 (0道)
我的收藏 (0道)
我的斩题 (0道)
我的笔记 (0道)
顺序练习 0 / 0
随机练习 自定义设置练习量
题型乱序 按导入顺序练习
模拟考试 仿真模拟
题型练习 按题型分类练习
易错题 精选高频易错题
学习资料 考试学习相关信息
Main()
{ int i=1,j=2,k=3;
If(i++==1&&(++j==3||k++==3)) printf("%d%d%d\n",i,j,k);
}
for (y=1,x=1;y<=50;y++) {
if (x>=10) break;
if (x%2= =1) { x+=5;continue; }
x-=3;
main( )
{ int x=3,y=6,a=0;
while(x++!=(y-=1))
{ a+=1;
if(y<x) break;
printf("x=%d,y=%d,a=%d\n",x,y,a);
#include<stdio.h>
#include<string.h>
{ char a[10]="12345";
strcat(a,"6789");
gets(a);printf("%s\n",a);
main()
{ chart a[15]= "ab\07\n07\0cd";
int i,j;
i=sizeof(a); j=strlen(a); printf("%d%d\n",i,j);
{ char p[]={ 'a', 'b', 'c'},q[]=''abc'';
printf (''%d %d\n'',sizeof(p),sizeof(q));}
程序运行后的输出结果是( )。
{ int i,t[][3]={9,8,7,6,5,4,3,2,1};
for(i=0;i<3;i++)
printf("%d",t[2-i][i]);
程序执行后的输出结果是( )。
Main( )
{ int t=1;
fun(fun(t));
fun(int h)
{ static int a[3]={1,2,3};
int k;
for(k=0;k<3;k++)a[k]+=a[k]-h;
for(k=0;k<3;k++)printf("%d,",a[k]);
printf("\n");return(a[h]);
int fl(int x,int y){return x>y?x:y;}
int f2(int x,int y){return x>y?y:x;}
{ int a=4,b=3,c=5,d=2,e,f,g;
e=f2(f1(a,b),f1(c,d));f=f1(f2(a,b),f2(c,d));
g=a+b+c+d–e–f;
printf("%d,%d,%d\n",e,f,g);
int fun1(double a){return a*=a;}
double fun2(double x,double y)
{ double a=0,b=0;
a=fun1(x);b=fun1(y);return(int)(a+b);
{int w; w=fun2(1.1,2.0);……}
程序执行后变量w中的值是( )。
int n='c';
switch(n++) {
default:printf("error");break;
case'a':case'A':case'b':case'B':printf("good");break;
case'c':case'C':printf("pass");
case'd':case'D':printf("warn");}
main() {
int a=3,b=4,c=5,t=99;
if(b<a&&a<c) t=a; a=c; c=t;
if(a<c&&b<c) t=b; b=a; a=t;
printf("%d%d%d\n",a,b,c);}
int i,j,x=0;
for(i=0;i<2;i++) {
x++;
for(j=0;j<=3;j++) {
if(j%2) continue;x++;}
x++; }
printf("x=%d\n",x);}
程序执行后的输出结果是________。
char b[]="Hello,you";
b[5]=0;
printf("%s\n",b);}
insert(char str[]) {
int i;
i=strlen(str);
while (i>0) {
str[2*i]=str[i];str[2*i-1]=′*′;i--;}
printf("%s\n",str);}
char str[40];
scanf("%s",str);
insert(str);}