Java复习题阅读程序题(共19页).doc
《Java复习题阅读程序题(共19页).doc》由会员分享,可在线阅读,更多相关《Java复习题阅读程序题(共19页).doc(19页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、精选优质文档-倾情为你奉上JAVA程序设计复习题之(三)阅读程序题(通信工程专业使用)三、阅读程序题。1、阅读以下程序:public class Sum public static void main( String args) double sum = 0.0 ; for ( int i = 1; i= 100; i + ) sum += i;, System.out.println( sum= + sum ); 该程序完成的功能是: 求sum=1+2+3+.+100的和。2、阅读以下程序:public class Sum public static void main(String arg
2、s) double sum = 0.0:for (int i=1; i=100; i+)sum += i*i;System.out.println( sum=+sum); 该程序的功能是: 求出sum的值为1到100的平方和。3、阅读以下程序:public class Sum public static void main(String args) double sum = 0.0;for(int i = 1; i = 100; i+)sum += i*i*i;System.out.println(sum= + sum); 此程序完成的功能是: 计算并输出1到100的立方和sum值。4、阅读以
3、下程序:public class Sum public static void main(String args) double sum = 0.0;for (int i=1; i=100; i+) sum += 1.0 / (double)i;System.out.println(sum=+sum); 此程序完成的功能是: 求解sum=1+1/2+1/3+.+1/100的值并打印输出。5、阅读以下程序import java.io.* ;public class Test public static void main(String args ) int i, s = 0;int a = 10
4、, 20, 30, 40, 50, 60, 70, 80, 90;for ( i = 0 ; i a.length; i+ )if(ai % 3 = 0) s += ai;System.out.println(s= + s);请写出此程序的输出结果: s=1806、阅读以下程序 import java.io.*;public class abc public static void main(String args ) AB s = new AB(Great!,I love Eclipse.); System.out.println(s.toString( ); class AB String
5、 s1; String s2; public AB(String str1, String str2) s1 = str1; s2 = str2; public String toString( ) return s1 + s2;运行结果是: 运行结果是:Great! I love Eclipse.7、阅读以下程序import java.io.* ; public class abc public static void main(String args ) int i, s = 0 ; int a = 10 , 20 , 30 , 40 , 50 , 60 , 70 , 80 , 90 ;
6、for ( i = 0 ; i a.length ; i + ) if ( ai%3 = = 0 ) s += ai ; System.out.println(s=+s); 运行结果是: 运行结果:s = 1808、阅读以下程序import java.io.* ; public class abc public static void main(String args ) System.out.println(a= + a + nb= + b); class SubClass extends SuperClass int c; SubClass(int aa, int bb, int cc)
7、super(aa, bb); c = cc; class SubSubClass extends SubClass int a; SubSubClass(int aa, int bb, int cc) super(aa, bb, cc); A = aa + bb + cc; void show( )System.out.println(a=+a+nb=+b+nc=+c); 运行结果是: 运行结果:a=60b=20c=309、以下程序的输出结果为 相等 。class StringTest1 public static void main(String args) String s1=hello;
8、String s2=new String(hello);if( s1.equals(s2) ) System.out.println(相等);else System.out.println(不相等);10、以下程序段的输出结果为 5 6 7 8 9 。public class TestArray public static void main(String args ) int i , j ;int a = 5,9,6,8,7; for ( i = 0 ; i a.length-1; i + ) int k = i; for ( j = i ; j a.length; j+ ) if ( aj
9、 ak ) k = j; int temp = ai; ai = ak; ak = temp; for ( i =0 ; ia.length; i+ ) System.out.print(ai+ ); System.out.println( ); 11、写出以下程序的功能。import java.io.*;public class TestFile public static void main(String args) throws Exception BufferedReader br = new BufferedReader(new InputStreamReader(System.in
10、); BufferedWriter bw = new BufferedWriter(new FileWriter(“input.txt); String s; while (true) System.out.print(请输入一个字符串: ); System.out.flush( ); s = br.readLine( ); if (s.length() = 0) break; bw.write(s); bw.newLine(); bw.close( ); 程序功能是: 程序功能是:从键盘逐一输入字符串,逐一输出至input.txt文件中,直至输入空行。12、阅读以下程序,写出输出结果。cla
11、ss Animal Animal( ) System.out.print (Animal ); public class Dog extends Animal Dog( ) System.out.print (Dog ); public static void main(String args) Dog snoppy = new Dog(); 输出结果是: 输出结果是:Animal Dog13、以下程序的输出结果为 Peter is 17 years old! 。public class Person String name;int age;public Person(String name,
12、 int age) this.name = name;this.age = age;public static void main(String args) Person c = new Person(Peter, 17);System.out.println(c.name + is + c.age + years old!);14、以下程序的输出结果为_ 课程号:101 课程名:JSP 学分:3 _。public class Course private String cNumber;private String cName;private int cUnit;public Course(S
13、tring number, String name, int unit) cNumber = number;cName = name;cUnit = unit;public void printCourseInfo() System.out.println(课程号: + cNumber + 课程名: + cName + 学分: + cUnit);class CourseTest public static void main(String args) Course c;c = new Course(101, JSP, 3);c.printCourseInfo();15、以下程序的输出结果为_
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- Java 复习题 阅读 程序 19
限制150内