使用当前浏览器访问考试宝,无法享受最佳体验,推荐使用 Chrome 浏览器进行访问。
更新时间: 试题数量: 购买人数: 提供作者:
有效期: 个月
章节介绍: 共有个章节
我的错题 (0道)
我的收藏 (0道)
我的斩题 (0道)
我的笔记 (0道)
顺序练习 0 / 0
随机练习 自定义设置练习量
题型乱序 按导入顺序练习
模拟考试 仿真模拟
题型练习 按题型分类练习
易错题 精选高频易错题
学习资料 考试学习相关信息
#include <stdio.h>
void main( )
{
double d=3.2;
int x,y;
x=1.2;
y=(x+3.8)/5.0;
printf("%d\n",d*y);
}
int a=1234;
printf(“%2d\n”,a);
int x=0;
if(x<0)
printf("%d,x");
#include〈stdio.h〉
int a=2,b=-1,c=2;
if(a<b)
if(b<0)
c=0;
else
c++;
printf("%d\n",c);
int x=3,y=0,z=0;
if(x=y+2)
printf("* * * *”);
printf("# # # #");
for(x=0,y=0;(y=123)&&(x<4);x++);
int x=3;
do
printf("%d\n",x=2);
}while(!x);
for语句后,k的值为( )
for(i=0, j=10; i<=j; i++,j--)