1 / 12
文档名称:

2018年6月Java程序设计 ( 第3次 )作业.doc

格式:doc   大小:173KB   页数:12页
下载后只包含 1 个 DOC 格式的文档,没有任何的图纸或源代码,查看文件列表

如果您已付费下载过本站文档,您可以点这里二次下载

分享

预览

2018年6月Java程序设计 ( 第3次 )作业.doc

上传人:xiaodengyou 2018/6/15 文件大小:173 KB

下载得到文件列表

2018年6月Java程序设计 ( 第3次 )作业.doc

文档介绍

文档介绍:第3次作业
一、程序阅读题(本大题共40分,共 10 小题,每小题 4 分)
1. import .* ;
public class Reverse
{
 public static void main(String args[ ])
 {
int i , n =5 ; int a[ ] = new int[5];
 for ( i = 0 ; i < n ; i ++ ) try
 {
BufferedReader br = new BufferedReader( new InputStreamReader());
a[i] = (( )); 
}
 catch ( IOException e )
 {
 } ;
 for ( i = n-1 ; i >= 0 ; i ――) (a[i]+" ");
( );
}
 }
 如果从键盘输入1 2 3 4 5 则运行结果为:
2. class Mystery
 {
private long val;
public Mystery(long v)
{
val = v;
 }
public static void main(String args[])
 {
Mystery x = new Mystery(10L);
Mystery y = new Mystery(10L);
Mystery z = y; long a = 10L;
int b = 10;
("the value1="+(y==z));
 ("the value2="+(y==x));
}
 }
3. class Test
{
 public static void add3(Integer i)
{
 int val=();
 val+=3; i=new Integer(val);
 }
public static void main(String args[])
{
Integer i=new Integer(0);
 add3(i);
(());
}
 }
4. public class demo
{
public static void main(String args[])
{
int bookno=0;
while (bookno<=100)
{
 bookno+=10;
if (bookno==40) break;
(“the bookno is”+bookno);
 }
(“This is the end”);
}
 }
5. public class test
{
 public static void main(String args[])
{
 int i=9;
 switch (i)
{
 default: ("default");
case 0: ("zero");
break;
 case 1: ("one");
case 2: ("two");
}
}
 }
6. public class Test
{
public static void main(String[] args)
{
String foo=args[0];
 String bar=args[1];
String baz=args[2];
(baz);
 }
 }
如果执行语句 java Test Red Green Blue 后结果为
7. public class test
{
 String s1 = "Initialized at definition";
 String s2;
public test(String s2i)
{
s2 = s2i;
}
public static void main(String args[])
{
 test si =new test("In