上一页 1 ··· 5 6 7 8 9 10 11 12 下一页
摘要: package com.text_1; public class cat { //按要求编写Java应用程序。 //(1)建立一个名叫Cat的类: //属性:姓名、毛色、年龄 //行为:显示姓名、喊叫 //(2)编写主类: //创建一个对象猫,姓名为“妮妮”,毛色为“灰色”,年龄为2岁,在屏幕上输 阅读全文
posted @ 2016-05-17 15:37 jakermk 阅读(757) 评论(0) 推荐(0) 编辑
摘要: package com.text_1; public class print_1 { //编写Java应用程序。首先,定义一个Print类,它有一个方法void output(int //x),如果x的值是1,在控制台打印出大写的英文字母表;如果x的值是2,在 //控制台打印出小写的英文字母表。其次 阅读全文
posted @ 2016-05-17 15:06 jakermk 阅读(265) 评论(0) 推荐(0) 编辑
摘要: package com.text_1; public class print { //编写一个Java应用程序,该应用程序包括2个类:Print类和主类E。Print //类里有一个方法output()功能是输出100 ~ 999之间的所有水仙花数(各位数字的 //立方和等于这个三位数本身,如: 3 阅读全文
posted @ 2016-05-17 14:42 jakermk 阅读(371) 评论(0) 推荐(0) 编辑
摘要: package com.text_1; public class student { //编写Java应用程序。首先,定义描述学生的类——Student,包括学号(int)、 //姓名(String)、年龄(int)等属性;二个方法:Student(int stuNo,String name,int age) //用于对对象的初始化,outPut()用于输出学生信息。其次,再定义一个主类... 阅读全文
posted @ 2016-05-17 14:41 jakermk 阅读(964) 评论(0) 推荐(0) 编辑
摘要: package com.text_1; public class Clock { int h,m,miao; Clock(int xiaoshi,int fenzhong,int mia) { h=xiaoshi; m=fenzhong; miao=mia; } void show() { Syst 阅读全文
posted @ 2016-05-17 13:49 jakermk 阅读(208) 评论(0) 推荐(0) 编辑
摘要: package com.text_1; public class Account { //帐号 String zhanghao; //存款余额 double cunkuanyue; Account(String zhanghao,double cunkuanyue) { this.zhanghao= 阅读全文
posted @ 2016-05-17 13:46 jakermk 阅读(344) 评论(0) 推荐(0) 编辑
摘要: 编写一个Java应用程序,该程序中有3个类:Lader、Circle和主类A。具体要求如下:Lader类具有类型为double的上底、下底、高、面积属性,具有返回面积的功能,包括一个构造方法对上底、下底、高进行初始化。Circle类具有类型为double的半径、周长和面积属性,具有返回周长、面积的功 阅读全文
posted @ 2016-05-16 23:14 jakermk 阅读(326) 评论(0) 推荐(0) 编辑
摘要: double x=1; double y=1; double z; double sum0=0; double c1=0; for(int i=0;i<20;i++) { c1=x+y; z=c1/x; y=x; x=c1; sum0+=z; } System.out.println(sum0); 阅读全文
posted @ 2016-05-16 15:50 jakermk 阅读(331) 评论(0) 推荐(0) 编辑
摘要: package com.text_1; public class XiYouJiRenWu { //输入游戏名字 String name; //身高 double height; //武器 String weapon; //显示名字 void shuchu() { System.out.printl 阅读全文
posted @ 2016-05-16 13:54 jakermk 阅读(242) 评论(0) 推荐(0) 编辑
摘要: int n=sc.nextInt(); int[]arr=new int[n]; for(int i=0;i=90&&arr[i]=60&&arr[i]100) { System.out.println("输入错误"); } else { System.out.println(" "+"C"); } } ... 阅读全文
posted @ 2016-05-16 08:38 jakermk 阅读(237) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 下一页