使用当前浏览器访问考试宝,无法享受最佳体验,推荐使用 Chrome 浏览器进行访问。
更新时间: 试题数量: 购买人数: 提供作者:
有效期: 个月
章节介绍: 共有个章节
我的错题 (0道)
我的收藏 (0道)
我的斩题 (0道)
我的笔记 (0道)
顺序练习 0 / 0
随机练习 自定义设置练习量
题型乱序 按导入顺序练习
模拟考试 仿真模拟
题型练习 按题型分类练习
易错题 精选高频易错题
学习资料 考试学习相关信息
int a=3,b=1;
if(a=b)
System.out.println("a="+a);
public class Test{
void print Value(int m){
do{
System.out.println(m);
}while(m>10);
}
public static void main( String[]args){
int i=10;
Test t=new Test();
t.printValue(i):
int a=4,b=5,x=3;
if(++a==b)
x=x*a;
public class A{
public static void main(String[] args){
int a=3,b=4,c=5,d=6;
if(a<b||c>d)
System.out.println("who");
else
System.out.println('why");
case 0:System.out.println("first");
case 1:
case 2:System.out.println("second");break;
default:System.out.println("end");
int a=10,t=0;
t=a++;
}while(t<=10);
int x=2;
x+=x;
}while(x<17);
int i=3 j=3;
while(--i!=i/j)
j=j+2;
int i=1 j=8;
if(i++>--j) continue;
}while(i<4);