java程序设计实验指导书

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

实验一 Java实验环境的建立一、实验目的

1.掌握Java编程环境的搭建过程;

2.掌握Jcreator pro软件的使用方法;

3.能使用Java doc文档。

二、实验内容

1.下载并安装,配置JDK环境变量;

2.下载Javadoc压缩包并解压在JDK安装路径下;

3.下载Jcreator pro 并安装和配置使用环境;

4.使用实验环境运行书中实例代码,在屏幕上输出“Hello Java”字符串。

①Java application程序代码如下:

public class HelloJava

{

public static void main(String args[])

{

"Hello Java!");

}

}

②Java applet程序代码如下:

import .*;

public class Hello extends

{

public void paint(Graphics g)

{

("Hello!",30,30);

}

}

三、试验要求

1、预习试验内容并写出上机报告。

2、实验中出现的问题及实验体会。

实验二 Java语言程序设计训练

一、实验目的:

1.输入、输出操作实现原理和方法

2.掌握程序流程控制的实现方法

3.掌握数组的定义和操作方法

二、实验内容

1.计算 Result=1!+2!+3!+ (10)

public class TestJieC{

public static void main(String arg[]){

long result=1;

for(int i=1;i<=10;i++)

{ result=i*result;

result+=result;

}

" "+result);

}

}

2.计算1---50之间所有素数的和。

public class Test{

public static void main(String args[]){

int count = 0;

for(int i = 2;i<=50;i++){

for(int j = 2;j<=i;j++){

if(i>j){

if(i%j == 0){

count++;

}

}

}

if(count==0){

}

count = 0;

}

}

}

}

3. 产生10个100之内的随机整数输出,并把这10个数按从小到大的顺序输出。

public class TestMath{

public static void main(String args[]){

int math[] = new int[10];

for(int i = 0;i<10;i++){

math[i] = (int)()*100);

" ");

}

for(int i = 0;i<10;i++){

for(int j = 0;j<10;j++){

if(math[i]

int l = math[i];

math[i] = math[j];

math[j] = l;

}

}

}

for(int i = 0;i<10;i++){

" ");

}

}

}

4. 随机产生20个50~100间的整数,输出这20个数并找出最大数及最小数输出。

public class TestMath{

public static void main(String args[]){

int math[] = new int[20];

int max = 0;int min = 100;

for(int i = 0;i<20;i++){

math[i] = (int)()*50+50);

" ");

}

for(int i = 0;i<20;i++){

max = max>math[i] ? max : math[i];

min = min

}

"max:"+max);

"min:"+min);

}

}

5.试编写程序,实现求几何形状(长方形、正方形、圆形)的周长、面积。(可任选其一)

import class Test{

public static void main(String args[]) throws Exception{

Scanner is = new Scanner;

"请输入长方形的宽");

int a = ();

"请输入长方形的高");

int b = ();

"输入1求出周长,输入2求出面积,输入三求出周长与面积");

int c = ();

if(c == 1){

"周长"+(a+b)*2);

}else if(c == 2){

"面积"+a*b);

}else if(c == 3){

"周长"+(a+b)*2+",面积"+a*b);

}else{

"输入有误,退出");

}

}

}

6.验证书中的例题。

三、试验要求

相关文档
最新文档