使用当前浏览器访问考试宝,无法享受最佳体验,推荐使用 Chrome 浏览器进行访问。
更新时间: 试题数量: 购买人数: 提供作者:
有效期: 个月
章节介绍: 共有个章节
我的错题 (0道)
我的收藏 (0道)
我的斩题 (0道)
我的笔记 (0道)
顺序练习 0 / 0
随机练习 自定义设置练习量
题型乱序 按导入顺序练习
模拟考试 仿真模拟
题型练习 按题型分类练习
易错题 精选高频易错题
学习资料 考试学习相关信息
public class E {
public static void main(String []args) {
System.out.println("ok");
System.out.println("您好");
}
class A {
下列哪个叙述是正确的?
public class Example1 //A
{
public static void main(String args[]) //B
System.out.println("ok"); //C
System.out.println("hello");
system.out.println("您好"); //D
main.java文件中有以下代码(请问ABCD注释标注的哪行代码有错误?)
Public class Example2 //A
System.out.println("您好"); //D
public class Example3 //A
public static void main(string args[]) //B
哪个叙述是错误的?
下列哪一项是正确的float变量的声明?
对于下列Test.java代码,下列哪个叙述是正确的?
public class Test{
public static void main(String args[]){
int arr[] = new int[10];
System.out.println(arr[1]);
public class Test1{
char c =65535; //A
byte b = 127; //B
int height = 100; //C
float f = 3.14; //D
public class Test2 {
int x = 8;
byte b = 127;
b = x; //A
x = 'a'; //B
long y= b; //C
float z=(int)6.89 ; //D
public class Test3 {
char c ='a'; //A
byte b = 128; //B
float f = 3.14F; //D
public class Test4 {
char c = 30320; //A
int public = 100; //C