JAVA程序设计报告

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

{ public static void main(String[] args) { int s=0; for (int i=0;i<=100 ;i++ ) { s+=i; } System.out.println(s); }
}
3)
class Count {
public static void main(String[] args) {
1. 分别使用if-else-if语句和switch语句编程,确定某一
月在哪个季节。
2. 分别使用while、do-while和for语句编程,求1~100的
和。
3. 使用break语句实现记数:从1~100,当数到Leabharlann Baidu8时程序
终止。
4. 编程创建一个Box类,在其中定义三个变量表示一个立
方体的长、宽和高,再定义一个方法setDemo对这三个
【程序输出结果】: 1)
2)
3)
4)
【结果分析、自己的体会和收获】: 这次的题目以熟悉语言为主,题目本身不难。这次实验让我
重新获得了阔别已久的在电脑前编代码的感觉。通过这次实 验,我对Java这门语言有了较多的认识,对类和对象(实 例)及其它们之间的联系有了更深刻的理解。
class SeasonChoose2 //用switch语句确定某一月在哪个季节 {
static void GetSeason(int i) {
switch (i) { case 1 : case 2 : case 12:System.out.println(i+"月为冬季");
break; case 3 :case 4 : case 5 :System.out.println(i+"月为春季");
for (int i=1; ;i++ ) {
System.out.print(i+" "); if (i%20==0) {
System.out.println(" "); } if (i>=78) break; } } }
4)
class Box {
private double x,y,z; public void SetDemo(double x,double y,double z) {
System.out.println(i+"月为秋季"); } if (i==12 || i==1 || i==2) {
System.out.println(i+"月为冬季"); } } else System.out.println("输入错误!"); } public static void main(String[] args) { int i=5; GetSeason(i); } }
i==9 || i==10 || i==11 || i==12 || i==1 || i==2)
{
if (i==3 || i==4 || i==5)
{
System.out.println(i+"月为春季");
}
if (i==6 || i==7 || i==8) {
System.out.println(i+"月为夏季"); } if (i==9 || i==10 || i==11) {
this.x=x; this.y=y; this.z=z; }
public double GetVolumn() {
return x*y*z; } public static void main(String[] args) {
Box b=new Box(); b.SetDemo(1,2,2); System.out.println("体积为"+b.GetVolumn()); } }
break; case 6 :case 7 : case 8 :System.out.println(i+"月为夏季");
break; case 9 :case 10 : case 11 :System.out.println(i+"月为秋季");
break; default :System.out.println("输入错误!");
s+=i; i++; } System.out.println(s); } } class Plus1 //用do-while语句求1~100和 { public static void main(String[] args) { int s=0,i=1; do { s+=i; i++; } while (i<=100); System.out.println(s); } } class Plus2 //用for语句求1~100的和
Java程序设计实验报告
学号:
姓名:
座位号: 实验日期:2010-11-15
【实验名称】: 类和对象的应用
【实验目的】:
1. 掌握各种数据类型及其使用方法。
2. 掌握分支语句if、switch和循环语句for、while、do-
while的应用。
3. 掌握类的声明和对象的创建。
4. 掌握方法的定义、调用和构造器的使用。 【实验内容及要求】:
} } public static void main(String[] args) {
int i=5; GetSeason(i); } }
2)
class Plus //用while语句求1~100的和 {
public static void main(String[] args) {
int s=0,i=1; while (i<=100) {
变量进行初始化,然后定义一个方法求立方体的体积。
创建一个对象,求给定尺寸的立方体的体积。 【程序代码】:
1)
class SeasonChoose1 //用if-else-if 语句确定某一月在哪个季节
{
static void GetSeason(int i)
{
if (i==3 || i==4 || i==5 || i==6 || i==7 || i==8 ||
相关文档
最新文档