使用当前浏览器访问考试宝,无法享受最佳体验,推荐使用 Chrome 浏览器进行访问。
更新时间: 试题数量: 购买人数: 提供作者:
有效期: 个月
章节介绍: 共有个章节
我的错题 (0道)
我的收藏 (0道)
我的斩题 (0道)
我的笔记 (0道)
顺序练习 0 / 0
随机练习 自定义设置练习量
题型乱序 按导入顺序练习
模拟考试 仿真模拟
题型练习 按题型分类练习
易错题 精选高频易错题
学习资料 考试学习相关信息
int y = 0;
for(int i = 0; i<10; ++i) {
y += i;
}
System.out.println(y);(1.0)
public int getValue(int i){
int result=0;
switch(i){
case1:
result=result+i;
case2:
result=result+i*2;
case3:
result=result+i*3;
return result;
}(1.0)
public class HelloWorld{
public static void main(String[]args){
int i=5,j=0,k;
while(i)
{ k=i+j;
for(j=10;j>0;j--)
i--;
StringBuffer buffer=new StringBuffer();
buffer.append("abc").append("123");
System.out.println(buffer);(1.0)