java类和方法1、 实验内容或题目(1) 编写Java应用程序,实现以下功能:当应用程序运行后,根据屏幕提示进行交互式输入并菲波那契(Fibonacci)数列的任意项。(2) 应用程序中定义方法头如下所示的方法: static int[] add(int[] x, int[] y) static int[] multi(int[] x, int[] y)add方法的功能是:把参数数组x和y(其元素个数相同)的每个元素相加,并作为返回数组的元素;multi方法的功能是:把参数数组x和y(其元素个数相同)的每个元素相乘,并作为返回数组的元素。在Java应用程序中使用这两个方法。(3) 编写Java应用程序,程序运行后,根据屏幕提示输入一个数字字符串,回车后统计有多少个偶数数字和奇数数字。(4) 编写应用程序,定义一个5行3列的二维数组,给数组的每个元素赋10~100之间的随机值,显示二维数组每行的元素,并输出所有元素的和。2、实验目的与要求⑴ 方法的定义和使用,方法重载等。⑵ 编写简单的类和使用类。⑶ 使用类库中的常用类解决简单的编程应用问题。3、 实验步骤与源程序 ⑴ 实验步骤 编辑源文件,可用Jcreater或EditPlus 2软件编辑 编译,若编译成功,则进入运行,进入DOS下运行 javac XX.java;若不成功,则返回编辑源文件 运行文件java XX 或appletviewer XX.htm等 ⑵ 源代码 题目一:import java.io.IOException;import java.io.BufferedReader;import java.io.InputStreamReader;public class Fibonacci{public static void main(String args[])throws IOException {BufferedReader buf; buf=new BufferedReader(new InputStreamReader(System.in)); String str; int x; System.out.println("请输入菲波那契数列的项数n:"); str=buf.readLine(); x=Integer.parseInt(str); System.out.println("菲波那契数列的值为:"+fib(x));} static long fib(int k) {int first=1,second=1,third=0; for(int i=3;i<=k;i++) {third=first+second; first=second; second=third; } return third; } } 题目二:public class UseAdd{ public static void main(String[] args){ int[] x={1,2,3,4,5,6}; int[] y={6,5,4,3,2,1}; int[] x1=new int[6]; x1=add(x,y); int[] y1=new int[6]; y1=multi(x,y); System.out.println("\n原数组x的值为:"); show(x); System.out.println("\n原数组y的值为:"); show(y); System.out.println("\n使用add方法后x的值为:"); show(x1); System.out.println("\n使用multi方法后y的值为:"); show(y1); } static int[] add(int[] x,int[] y){ int[] x1=new int[6];; for(int i=0;i 题目三:import java.io.IOException;import java.io.BufferedReader;import java.io.InputStreamReader;
public class tongJi{ public static void main(String[] args)throws IOException{ BufferedReader buf; buf =new BufferedReader(new InputStreamReader(System.in)); String str; char s; int n=0,m=0; System.out.println("请输入数字字符串。输入quit,回车后则为退出运行"); while(true){ str=buf.readLine(); if(str.equals("quit")) break; for(int i=0;i 题目四:public class tdArray{ public static void main(String[] args){ int[][] x=new int[5][3]; int sum=0; for(int i=0;i 4、 测试数据与实验结果(可以抓图粘贴) 题目一: 题目二: 题目三: 题目四: 5、 结果分析与实验体会 这是我们第四次做实验了,实验中还是遇到了很多问题。许多问题都要在老师的帮助下进行,虽然JAVA程序都差不多,只要掌握了方法即可。我们在JAVA课堂中,我们已学习了很多。在JAVA语言基础学习完之后,我们在课本中学习了第二章的内容:使用JAVA解决简单的问题。还有类方面的类库介绍。老师平时上课都会讲很多的例题,给我们详细介绍了编程技巧等,使我们受益匪浅。实验中的问题经过讨论和反复地修改之后终于解决,我们还须在JAVA方面更加努力379