使用当前浏览器访问考试宝,无法享受最佳体验,推荐使用 Chrome 浏览器进行访问。
更新时间: 试题数量: 购买人数: 提供作者:
有效期: 个月
章节介绍: 共有个章节
我的错题 (0道)
我的收藏 (0道)
我的斩题 (0道)
我的笔记 (0道)
顺序练习 0 / 0
随机练习 自定义设置练习量
题型乱序 按导入顺序练习
模拟考试 仿真模拟
题型练习 按题型分类练习
易错题 精选高频易错题
学习资料 考试学习相关信息
while(y—) {
x++;
}
System.out.println(“x="+x+’ y="+y);
public static void main(String [] args) {
int x= 0;
int y= 0;
for (int z = 0; z < 5; z++) {
if (( ++x > 2) && ( ++y > 2)) {
System.out.println(x + ” ” + y);
do {
if (i++ > --j) {
continue;
} while (i < 5);
System.out.println("i= “+i+“and j= ”+j);
public static void main(String[] args) {
int myArg;
System.out.println(myArg);
if (i == 3) {
System.out.print(i);
for (int i=3; i<=10; ++i) {
System.out.println(++i);
boolean flag = false;
if (flag = true) {
System.out.println("true");
} else {
System.out.println("false");
public static void main(String args[]) {
for (int i = 1; i <= 4; i++) {
switch (i) {
case 1:
System.out.print("a");
case 2:
System.out.print("b");
break;
case 3:
System.out.print("c");
default:
System.out.print("d");
System.out.println(arr[3]);
for (int year = 2000; year <= 2020; year++) {
if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {
System.out.println(year);
count++;
if (count == 3) {
if (x > 5) {
if (x > 15) {
System.out.println("x>15");
System.out.println("x<=5");
System.out.println("结束");