赞
踩
- public class HelloWorld
- {
- public static void main(String[] args)
- {
- System.out.println("hello world!");
- }
- }
public:定义类的访问权限声明
class:类的标识
HelloWorld:类名(与文件名完全一致)
{... }中:类体
mian()方法:执行程序的入口
main()方法的定义格式:
public static void main()
{...
}
System.out.println("..."):显示语句:输出一个字符串
学英语:
public:公众的,公用的,公开场合的.adj公众,大众.公众场所.n
class:班级,阶层,等级,类别.n把...看作,把...归类.v优秀的,出色的.adj
static:静止的,停滞的,静态的,静止的.adj静电,不停的抱怨,静力学.n
string:线,一系列,细长物,字符串.n 串起,悬挂.v由弦乐器组成的.adj
args:参数
system:系统,体制制度,身体,网络.n
out:出现,在室外,公开,完全.adv从里面出去.prep熄灭的,盛开的,出局的.adj击倒,击晕,熄灭,驱逐.v出路,脱身办法.n
println:换行打印
jdk:开发包
jre:运行环境
jvm:虚拟机
cmd使用:
Microsoft Windows [版本 10.0.22000.856]
(c) Microsoft Corporation。保留所有权利。C:\Users\ASUS>D:
D:\>cd JAVA
D:\JAVA>cd hello
D:\JAVA\hello>javac HelloDate.java
D:\JAVA\hello>java HelloDate
Tue Aug 23 14:54:20 CST 2022
拓展题目:显示当前系统时间
import java.util.Date; public class HelloDate{ public static void main(String[] args) { Date date = new Date(); System.out.println(date);//显示时间日期 } }
举几个例子
1.输入字母,输出前和后
- import java.util.Scanner;
- public class a3{
- public static void main(String [] args)
- {
- char a,b,c;
- Scanner sc =new Scanner(System.in);
- b=sc.next().charAt(0);
- a=(char)(b-1);
- c=(char)(b+1);
- System.out.println(a+" "+b+" "+c);
- System.out.println((int)a+" "+(int)b+" "+(int)c);
- }
- }
2.给出三条边,计算三角形面积
- import java.text.DecimalFormat;
- import java.util.Scanner;
- public class a9{
- public static void main(String [] args)
- {
- double a,b,c,ans;
- String s;
- Scanner sc=new Scanner(System.in);
- DecimalFormat df=new DecimalFormat("0.000");
-
- a=sc.nextDouble();
- b=sc.nextDouble();
- c=sc.nextDouble();
- ans=(a+b+c)/2;
- ans=ans*(ans-a)*(ans-b)*(ans-c);
- ans=Math.sqrt(ans);
- s=df.format(ans);
- System.out.println(s);
- }
- }
我的感悟:
1.
import java.text.DecimalFormat;
import java.util.Scanner;类似头文件的语句,第一条可以调用输入语句,第二条可以调用固定格式语句
2.输入
先写这句话Scanner sc=new Scanner(System.in);
然后对不同的数据类型写法例如
char: b=sc.next().charAt(0);//其实意思是录入字符串的第几个,从0开始
int:a=sc.nextInt();
double:a=sc.nextDouble();
3.固定格式
方法是String s;//定义数据类型的时候S是大写,int什么的就不需要大写
DecimalFormat df=new DecimalFormat("0.000");
s=df.format(ans);
4.第一次见的函数
ans=Math.sqrt(ans);//是根号
今天来做一些总结
- import java.util.Arrays;//排序
- import java.util.Scanner;//输入
- import java.util.Date;//日期
- import java.text.SimpleDateFormat;//格式
alt+回车可以导入不需要自己导入
- public class pd{
- public static void main(String[] args)
- {
- ......
- }
- }
3.定义
- boolean a;//布尔
- int a[]=new int[100];//数组
- final int size=100;//常量
- String s=new String ("hello");//字符串
4.输入输出
- //输入
- Scanner sc=new Scanner (System.in);
- String a=sc.next();
- int b=sc.nextInt();
-
-
- //输出
- System.out.println(ans +" " +a);//有换行的输出
- System.out.printf("%d %.2f",ans ,a);//可以带格式的换行
-
-
-
- //其他关于格式的问题
-
- String a;
- double b=0.1314;
-
- DecimalFormat df=new DecimalFormat("0.00");
- a=df.format(b);//小数数位
-
- //调用时间格式
- Date d=new Date(System.currentTimeMillis());
- SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss SSS);
- System.out.println(sdf.format(d));
5.定义函数(划掉)类的方法
- double g=0.0;
- String result =judge(g);
- public static String judge(double g)
- {
- ...
- return result;
- }
6.一些出现的好使的函数
- String类方法
- s1.equals(s2);//字符串比较
- s2.length();//长度
- s1.charAt(0);//获取第0个字符
- s2.replace('J','j');//把字符替换
- s2.toUpperCase();//大写转换
- s3.toLowerCase();//小写转换
- s1.indexOf(s2);//("abc") //查找子串,返回第几位,有0,查不到就是-1
-
- Math方法
- Math.sqrt(x);//平方根
- Math.pow(double x,double y);//乘方
-
- 其他
- x=1+(int)(Math,random()*100);//1-100随机数
-
(巨无敌详细)
类:描述一类事物 关键字:class
属性:类中定义的多个变量
对象:是类的一个具体事物 用类名定义
方法:对象可以完成的操作,即对象的行为
类的定义格式:
public class 类名{
属性定义
构造方法定义
普通方法定义
}
要设置访问权限
about:访问权限
public:公有——全部
private:私有——同一个类
protected:受保护的——同一个类,同一个包,不同包的子类
不写:默认default同一个类和同一个剥
类中的几种常见方法:
构造方法
一个类可以有多个构造方法
1.
public student(string name,int age)
{
this.name=name;
this.age=age;
}
2.无参数构造方法
public student()
{
this.name="";
this.age=0;
}
//this关键字,指向本类的当前对象
用途1:访问当前对象的属性和方法
用途2:访问构造方法
public Student()
{
this("",0);
}
获取方法//更改name的值
public void setName(String name)
{
this.name=name;
}
设置方法//可以返回name的值
public String getName()
{
return name;
}
- //从键盘输入一个字符,求出它的前驱和后继字符(按照ASCII码值排序),并按照从小到大的顺序输出这三个字符和对应的ASCII值。
-
- import java.util.Scanner;
- public class a3{
- public static void main(String [] args)
- {
- char a,b,c;
- Scanner sc =new Scanner(System.in);
- b=sc.next().charAt(0);
- a=(char)(b-1);
- c=(char)(b+1);
- System.out.println(a+" "+b+" "+c);
- System.out.println((int)a+" "+(int)b+" "+(int)c);
- }
- }
- //利用了奇怪数据类型转换,采用获取字符串第0个的方式输入一个字符b=sc.next().charAt(0);
-
-
- //编程实现从控制台读入以整数表示的三个边的长度(假设输入的长度肯定可以形成三角形),求平方根函数Math.sqrt(double n),然后利用上述公式计算面积并输出,结果小数点后保留3位有效数字。
-
- import java.text.DecimalFormat;
- import java.util.Scanner;
- public class a9{
- public static void main(String [] args)
- {
- double a,b,c,ans;
- String s;
- Scanner sc=new Scanner(System.in);
- DecimalFormat df=new DecimalFormat("0.000");
-
- a=sc.nextDouble();
- b=sc.nextDouble();
- c=sc.nextDouble();
- ans=(a+b+c)/2;
- ans=ans*(ans-a)*(ans-b)*(ans-c);
- ans=Math.sqrt(ans);
- s=df.format(ans);
- System.out.println(s);
- }
- }
- //用到了平方根函数,,利用了字符串定义格式来控制小数数位
-
- //编写一程序,从键盘输入输入一个三位正整数,然后反向输出对应的数,如果输入的数不是三位正整数,则输出-1。
-
- import java.util.Scanner;
- public class a10{
- public static void main(String [] args)
- {
- int a;
- Scanner sc =new Scanner(System.in);
- a=sc.nextInt();
- int s1=0;
- if(a>=100&&a<=999)
- {
- while(a!=0)
- {
- s1=s1*10+a%10;
- a/=10;
- }
- System.out.println(s1);
- }
- else System.out.println("-1");
- }
- }
- //利用循环的算法把一个正数倒序,前面没有零,方法是每次都加上余数然后乘10
-
-
- //使用switch语句,直接给出某一月份的整数,程序输出该月是在年度的第几季度。
- import java.util.Scanner;
- public class a16
- {
- public static void main(String[] args)
- {
- int a;
- Scanner sc =new Scanner(System.in);
- a=sc.nextInt();
- switch(a)
- {
- case 1:
- case 2:
- case 3:
- System.out.println("first");
- break;
- case 4:
- case 5:
- case 6:
- System.out.println("second");
- break;
- case 7:
- case 8:
- case 9:
- System.out.println("third");
- break;
- default:
- System.out.println("fourth");
- break;
- }
- }
- }
- //是判断语句switch的用法,与C语言类似
-
- //编写一个程序,用户输入出生日期和当前日期,计算出实际年龄。
- import java.util.Scanner;
- public class a17
- {
- public static void main(String [] args)
- {
- Scanner sc=new Scanner(System.in);
- String a,b;
- int ans=0;
- a=sc.next();
- b=sc.next();
- char[] aa=a.toCharArray();//将a生日日期从字符串转换成char数组
- char[] bb=b.toCharArray();
- ans+=(bb[0]-aa[0])*1000;
- ans+=(bb[1]-aa[1])*100;
- ans+=(bb[2]-aa[2])*10;
- ans+=(bb[3]-aa[3])*1;//此时ans是ab大概的年份差距
- int ma,mb,da,db;
- if(bb[6]!='.')
- {
- mb=(bb[5]-'0')*10+(bb[6]-'0');
- if(bb.length==10) db=(bb[8]-'0')*10+(bb[9]-'0');
- else db=bb[8]-'0';
- }
- else
- {
- mb=bb[5]-'0';
- if(bb.length==9) db=(bb[7]-'0')*10+(bb[8]-'0');
- else db=bb[7]-'0';
- }
- if(aa[6]!='.')
- {
- ma=(aa[5]-'0')*10+(aa[6]-'0');
- if(aa.length==10)da=(aa[8]-'0')*10+(aa[9]-'0');
- else da=aa[8]-'0';
- }
- else{
- ma=aa[5]-'0';
- if(aa.length==9)da=(bb[7]-'0')*10+(aa[8]-'0');
- else da=aa[7]-'0';
- }
- //找到了a,b的准确月份和日期
-
- if(mb<ma||(ma==mb&&db<da))ans--;//进行比较,是否还没有满一年
- System.out.println(ans);
- }
- }
- /*实现一个基于ASCII码的简单加密系统。
- 加密规则如下:
- if (OriginalChar + Key > 126) then
- EncryptedChar = ((OriginalChar + Key)-127) + 32
- else
- EncryptedChar = (OriginalChar + Key)
- 限定密钥是1~100之间的某个数字。原始消息全部由ASCII码组成,
- 编写加密解密功能,实现这个加密系统。输入密钥和一行明文,输出密文;再对密文解密,输出明文。*/
-
- import java.util.Scanner;
- public class b1{
- public static void main(String[] args)
- {
- int size=100,k;
- char c=0;
- String a;
- char c1[]=new char[15];
- char c2[] =new char[15];
- Scanner sc=new Scanner(System.in);
- System.out.print("Enter a message for encrypt: ");
- a=sc.nextLine();
- System.out.print("Enter a key between 1 to 100: ");
- k=sc.nextInt();
- for(int i=0;i<a.length();i++)
- {
- c=a.charAt(i);
- if (c+k>126)
- c1[i] = (char) (((c+k)-127) + 32);
- else
- c1[i] = (char) (c + k);
-
- }
- String a2=String.valueOf(c1);
- System.out.println("message: "+a);
- System.out.println("result: "+a2);
- for(int i=0;i<a2.length();i++)
- {
- c=a2.charAt(i);
- if(c-k<32)
- {
- c2[i]=(char)(((c-k)+127)-32);
- }
- else
- {
- c2[i]=(char)(c-k);
- }
- }
- String a3=String.valueOf(c2);
- System.out.println("result: "+a2);
- System.out.println("message: "+a3);
- }
- }
-
- //给定一个精度值e,用下列公式计算sin(x)的近似值,要求前后两次迭代之差的绝对值小于e,给出相应的最小迭代次数n和最后一次计算的sin(x)值。
-
- import java.text.DecimalFormat;
- import java.util.Scanner;
- public class b3{
- public static void main(String[] args)
- {
- double x,e;
- Scanner sc=new Scanner(System.in);
- x=sc.nextDouble();
- e=sc.nextDouble();
- double ans1=0,ans2=x,t=1,m=x;
- boolean f=false;
- int sum=1;
- while((double)(ans2-ans1)>e||(double)(ans1-ans2)>e)
- {
- sum++;
- f=!f;
- m*=x/(t+1)*x/(t+2);
- t+=2;
- ans1=f?(ans2-m):(ans2+m);
- double k=ans1;
- ans1=ans2;
- ans2=k;
- }
- String s;
- DecimalFormat df=new DecimalFormat("0.000000000");
- s=df.format(ans2);
- System.out.println(sum+" "+s);
- }
- }
-
- //用递归方法编写求最大公因子程序。两个正整数x和y的最大公因子定义为:如果y<=x且x mod y=0时,gcd(x,y)=y;如果y>x时,gcd(x,y)=gcd(y,x);其他情况,gcd(x,y)=gcd(y,x mod y)
-
- import java.text.DecimalFormat;
- import java.util.Scanner;
- public class b4{
- public static void main(String[] args)
- {
- Scanner sc=new Scanner(System.in);
- int a1,a2;
- a1=sc.nextInt();
- a2=sc.nextInt();
- System.out.println(ab(a1,a2));
- }
-
- static int ab(int m,int n)
- {
- if(n==0)
- return m;
- return ab(n,m%n);
- }
- }
-
- //编写方法atof(s),把字符串s转化成相应的双精度浮点数.输入字符串可能含有如下几部分:正负号整数部分小数点小数部分该函数还能够处理形如123.45e-5的指数型字符串输入.输入字符串中不含有空格.编写一个程序,使用该函数,将输入的字符串转换成相应的双精度浮点数.
-
- import java.util.Scanner;
- public class b5 {
- public static void main(String[] args) {
- Scanner sc = new Scanner(System.in);
- int a;
- a = sc.nextInt();
- for (int i = 1; i <= a; i +=2)
- {
- for (int j = 1; j < i; j++) {
- System.out.print("*");
- }
- System.out.println("*");
- }
- }
- }
-
- //你的程序要读入一系列正整数数据,输入-1表示输入结束,-1本身不是输入的数据。程序输出读到的数据中的奇数和偶数的个数。
-
- import java.util.Scanner;
- public class b8 {
- public static void main(String[] args) {
-
- int a = 1, ans1 = 0, ans2 = 0;
- boolean l = true;
- Scanner sc = new Scanner(System.in);
- while (l) {
- a = sc.nextInt();
- if (a != -1) {
- if (a % 2 == 0) ans2++;
- else ans1++;
- } else l = false;
- }
- System.out.println(ans1 + " " + ans2);
- }
- }
- //编写一个程序,用户输入一个正整数,把它的各个数字前后颠倒一下,并输出颠倒后的结果。
- import java.util.Scanner;
- public class c1 {
- public static void main(String[] args)
- {
- Scanner sc=new Scanner(System.in);
- int a;
- a=sc.nextInt();
- int m=0;
- while(a/10!=0)
- {
- m=a%10;
- a=a/10;
- System.out.print(m);
- }
- System.out.println(a);
- }
- }
-
- //判断两个数组是否包含相同元素
- import java.util.Arrays;
- import java.util.Scanner;
- public class c2 {
- public static void main(String[] args)
- {
- Scanner sc=new Scanner (System.in);
- int n=sc.nextInt();
- int a[]=new int[n];
- int b[]=new int[n];
- for(int i=0;i<n;i++)
- {
- a[i]=sc.nextInt();
- }
- for(int i=0;i<n;i++)
- {
- b[i]=sc.nextInt();
- }
- Arrays.sort(a);
- Arrays.sort(b);
- System.out.println(pd(a,b,n));
- }
- public static int pd(int a[],int b[],int n)
- {
- int k=1;
- for(int i=0;i<n;i++)
- {
- // System.out.println(a[i]+" "+b[i]);
- if(a[i]!=b[i]) k=0;
- }
- return k;
- }
-
- }
-
- //输入一组成绩数据,编程输出此组数据的平均值(要求此组数据定义为数组),并统计和输出不及格人数。
-
- import java.util.Scanner;
- public class c3 {
- public static void main(String[] args)
- {
- Scanner sc=new Scanner (System.in);
- int n=sc.nextInt();
- double sum=0;
- int ans=0;
- double a[]=new double[n];
- for(int i=0;i<n;i++)
- {
- a[i]=sc.nextDouble();
- if(a[i]<60) ans++;
- sum+=a[i];
- }
- sum/=n;
-
- System.out.printf("%.2f\n",sum);
- System.out.println(ans);
- }
- }
-
- 教师工资,编程找出并显示最高工资,指出第几个工资最高。
- import java.util.Scanner;
- public class c4 {
- public static void main(String[] args)
- {
- Scanner sc=new Scanner (System.in);
- int sum=-1,ans=0;
- int a[]=new int[6];
- for(int i=0;i<6;i++)
- {
- a[i]=sc.nextInt();
- if(a[i]>sum)
- {sum=a[i];
- ans=i+1;}
- }
- System.out.printf("No %d salary maxsalary:%d\n",ans,sum);
- }
- }
-
- //通过键盘输入10个数组元素,用冒泡法实现由大到小排序。
- import java.util.Scanner;
- public class c6 {
- public static void main(String[] args)
- {
- Scanner sc=new Scanner (System.in);
- int a[]=new int[10];
- for(int i=0;i<10;i++)
- {
- a[i]=sc.nextInt();
- }
- for(int i=0;i<9;i++)
- {
- for(int j=i+1;j<10;j++)
- {
- if(a[i]<a[j])
- {
- int t=a[i];
- a[i]=a[j];
- a[j]=t;
- }
- }
- }
- for(int i=0;i<10;i++)
- {
- if(i==9) System.out.println(a[i]);
- else System.out.print(a[i]+" ");
- }
- }
- }
- //要求编程实现IntReceiver类,使给定的Test类能正常运行,并实现指定的输出内容。指定范围为0-100.
- import java.util.Scanner;
- public class IntReceiver{
- int value;
- public int getValue()
- {
- Scanner sc=new Scanner(System.in);
- System.out.print("input an integer:");
- value =sc.nextInt();
-
- while(!(value >=0 && value <= 100))
- {
- System.out.println("invalid input!");
- System.out.print("input an integer:");
- value =sc.nextInt();
- }
- return value;
-
- }
- }
-
- public class Test
-
- {
- public static void main(String[] args)
- {
- IntReceiver ir = new IntReceiver();
- int value;
- value = ir.getValue();
- System.out.println("The value is "+value);
- }
- }
-
- //定义一个Circle类,包括一个属性(半径),两个方法:input方法用来输入半径,area方法用来计算圆的面积。再定义一个测试类Test包括一个main方法:调用input和area方法,并输出半径和面积。
-
- import java.util.Scanner;
- public class Circle
- {
- double r,ans;
- public double input()
- {
- Scanner sc=new Scanner(System.in);
- r=sc.nextInt();
- return r;
- }
- public double area()
- {
- ans=3.14*r*r;
- return ans;
- }
- public static void main(String[] args)
- {
- Circle dd=new Circle();
- System.out.println("radius="+dd.input());
- System.out.printf("area=%.2f\n",dd.area());
- }
- }
-
- //请根据已知的程序代码,补全类Worker,增加显示语句显示工人信息。
-
- public class Test{
- public static void main(String [] args){
- Worker w = new Worker();
- w.display();
- }
- }
- class Worker {
- String name="wang";
- int age=40;
- double salary=3800;
- int level=1;
-
- void display(){
- System.out.println("name=" + name);
- System.out.println("age=" + age);
- System.out.println("salary="+salary);
- System.out.println("level=" +level);
-
- }
- }
-
- //请根据已知的程序代码,补全类Teacher和类Test,显示教师信息。
-
- public class Test{
- public static void main(String[] args)
- {
-
- Teacher zhang=new Teacher("zhang",30,4580.0,"134");
-
- zhang.display();
-
- }
- }
-
- class Teacher{
- private String name;
- private int age;
- private double salary;
- private String professionalTitle;
-
- public Teacher(String name,int age,double salary,String professionalTitle){
-
- this.name="zhang";
- this.age=30;
- this.salary=4580.0;
- this.professionalTitle="134";
-
- }
-
- public void display(){
- System.out.println("Name=" + name);
- System.out.println("Salary=" + salary);
- }
- }
-
- //温度转换
- public class Test1{
- static public void main(String args[]){
- Temperature t1 = new Temperature(0,'C');
- Temperature t2 = new Temperature(30,'F');
- Temperature t3 = new Temperature(-40,'C');
- Temperature t4 = new Temperature(-40,'F');
- Temperature t5 = new Temperature(98,'C');
- Temperature t6 = new Temperature(212,'F');
- String comStr;
- int comInt;
- System.out.println("t1: "+t1.toString());
- System.out.println("t2: "+t2.toString());
- comStr = t1.compareTo(t2);
- System.out.println("t1 is "+comStr+" t2");
- System.out.println("-");
- System.out.println("t3 in F is : "+t3.getF());
- comStr = t3.compareTo(t4);
- System.out.println("t3 is "+comStr+" t4");
- System.out.println("-");
- System.out.println("t6 in C is : "+t6.getC());
- comStr = t5.compareTo(t6);
- System.out.println("t5 is "+comStr+" t6");
- }
- }
- class Temperature{
- private double a;
- private char b;
- public Temperature(double a,char b)
- {
- this.a=a;
- this.b=b;
- }
- public double getC()
- {
- if(b=='C') return a;
- return (a-32)/1.8;
- }
- public double getF()
- {
- if(b=='F') return a;
- return a*1.8+32;
- }
- public String toString()
- {
- return "Temperature is "+a+b;
- }
- public String compareTo(Temperature c)
- {
- if(getF()==c.a) return " equals to ";
- if(getF()<c.a) return " less than ";
- return " greater than ";
- }
- }
-
-
- //改进的整数接受类-wyt修改
- import java.util.Scanner;
-
- public class Test2
- {
- public static void main(String[] args)
- {
- IntReceiver ir;
- int value;
- Scanner sc = new Scanner(System.in);
- //input the min value;
- int min = sc.nextInt();
- //input the max value;
- int max = sc.nextInt();
- ir = new IntReceiver(min, max);
- value = ir.getValue(sc);
- System.out.println("The value is: "+value);
- }
- }
- class IntReceiver{
- private int min,max;
- public IntReceiver(int min,int max)
- {
- this.min=min;
- this.max=max;
- }
- public int getValue(Scanner sc)
- {
- int ans=sc.nextInt();
- while(ans<min||ans>max)
- {
- System.out.println("Invalid value");
- ans=sc.nextInt();
- }
- return ans;
- }
- }
-
- /*Name=li
- Age=0
- Salary=0.0
- Level=0
- Name=wang
- Age=41
- Salary=3800.0
- Level=2*/
-
-
- public class Test{
- public static void main(String [] args){
- Worker w2 = new Worker("li");
- w2.display();
-
- w2.setName("wang");
- w2.setAge(41);
- w2.setSalary(3800);
- w2.setLevel(2);
-
- w2.display();
-
- }
- }
-
- class Worker {
- private String name;
- private int age;
- private double salary;
- private int level;
-
- public void setName(String name){
- this.name=name;
- }
- public String getName(){
- return this.name;
- }
-
- public void setAge(int age){
- this.age=age;
- }
- public int getAge(){
- return this.age;
- }
-
- public void setSalary(double salary){
- this.salary=salary;
- }
- public double getSalary(){
- return this.salary;
- }
-
- public void setLevel(int level){
- this.level=level;
- }
- public int getLevel(){
- return this.level;
- }
-
- public Worker(String name,int age,double salary,int level){
-
- this.name=name;
- this.age=age;
- this.salary=salary;
- this.level=level;
-
- }
-
- public Worker(String name)
- {
-
- this.name="li";
-
- }
-
- public void display(){
- System.out.println("Name="+name);
- System.out.println("Age="+age);
- System.out.println("Salary="+salary);
- System.out.println("Level="+level);
- }
- }
-
-
- /*【输出形式】
- Name=zhang
- Name=
- */
- public class Test{
- public static void main(String [] args){
- Student s = new Student("zhang", 23, 74);
- Student s2= new Student();
-
- s.display();
- s2.display();
- }
- }
-
- class Student{
- private String name;
- private int age;
- private double grade;
-
- public Student(){
-
- name="";
-
- }
- public Student(String name, int age, double grade){
-
- this.name = name;
- this.age = age;
- this.grade = grade;
-
- }
-
- public void display(){
- System.out.println("Name=" + name);
- }
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。