JAVA程序阅读题.doc

上传人:豆**** 文档编号:23952663 上传时间:2022-07-02 格式:DOC 页数:24 大小:147KB
返回 下载 相关 举报
JAVA程序阅读题.doc_第1页
第1页 / 共24页
JAVA程序阅读题.doc_第2页
第2页 / 共24页
点击查看更多>>
资源描述

《JAVA程序阅读题.doc》由会员分享,可在线阅读,更多相关《JAVA程序阅读题.doc(24页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。

1、Four short words sum up what has lifted most successful individuals above the crowd: a little bit more.-author-dateJAVA程序阅读题JAVA程序阅读题四、程序阅读题:(每小题6分,共18分)1写出以下程序的运行结果。 public class EqualOrNot public static void main(String args) B b1=new B(5);B b2=new B(5);System.out.println(b1=b2);System.out.println

2、(b1.equals(b2);class B int x;B( int y) x=y; 1、写出以下程序的运行结果。class StaticTest static int x=1;int y;StaticTest()y+;public static void main(String args ) StaticTest st=new StaticTest(); System.out.println(x= + x); System.out.println(st.y= + st.y); st=new StaticTest(); System.out.println(st.y= + st.y); st

3、atic x+;x=2st y=1st y=12、写出以下程序的功能。public class TestArray public static void main(String args ) int i , j ;int a = 1,3,2,5,4; for ( i = 0 ; i a.length-1; i + ) int k = i; for ( j = i ; j ak ) k = j; int temp =ai; ai = ak;ak = temp; for ( i =0 ; ia.length; i+ ) System.out.print(ai+ ); System.out.prin

4、tln( );5 4 3 2 13、写出以下程序的运行结果。class MyException extends Exceptionpublic String toString( )return negative; public class ExceptionDemopublic static void mySqrt(int a) throws MyExceptionif( a0 )throw new MyException();System.out.println(Math.sqrt(a); public static void main( String args )trymySqrt(25

5、);mySqrt(-5 );catch( MyException e )System.out.println(Caught +e);5.0Caught negative2写出以下程序的运行结果。import java.io.*;public class TestString public static void main(String args ) StringC s = new StringC (“Hello ,World!); System.out.println(s); class StringC String s1; String s2; StringC( String str1 ,

6、String str2 ) s1 = str1; s2 = str2; public String toString( ) return s1+s2;HelloWorld!4写出以下程序的功能。class Test public static void main(String args) String s;char c;int upper,lower;upper=lower=0;s=args0;for (int i=0;i=a & c=A & c=Z)upper+;System.out.println(upper+”,”+lower);1写出以下程序的运行结果。class OverloadDe

7、mo void testOverload( int i ) System.out.println(“int”); void testOverload(String s) System.out.println(“String”); public static void main(String args ) OverloadDemo a=new OverloadDemo ( ); char ch=x;a.testOverload(ch); int2阅读以下程序,写出输出结果。class Firstpublic First()aMethod();public void aMethod()System

8、.out.println(“in First class”);public class Second extends Firstpublic void aMethod()System.out.println(“in Second class”);public static void main(String args)new Second( );in Second class3写出以下程序的运行结果。import java.io.*;public class UseLabelpublic static void main(String args)Loop: for(int i=2; i10; i

9、+) for(int j=2;ji;j+) if( i%j = 0)continue Loop; System.out.print(i+ ); 2 3 5 71、写出以下程序的运行结果。publicclassChangeStrDemo publicstaticvoidchangestr(Stringstr) str=welcome; publicstaticvoidmain(Stringargs) Stringstr=1234; changestr(str); System.out.println(str); 12343、写出以下程序的运行结果。publicclassFooDemo stati

10、cbooleanfoo(charc) System.out.print(c); returntrue; publicstaticvoidmain(Stringargs) inti=0; for(foo(a);foo(b)&(i2);foo(c) i+; foo(d); abdcbdcb1写出以下程序的运行结果。public class Test1 public static void changeStr(String str)str=welcome;public static void main(String args) String str=1234;changeStr(str);System.out.println(str);12341、写出以下程序的运行结果。public class Incpublic static void main(String argv)Inc inc = new Inc();int i =0;inc.fermin(i);i = i+;System.out.println(i);void fermin(int i)i+;0-

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 教育专区 > 小学资料

本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

工信部备案号:黑ICP备15003705号© 2020-2023 www.taowenge.com 淘文阁