编写Java应用程序。首先,定义描述学生的类——Student,包括学号(int) 姓名(String)年龄(int)等属性;二个方法:Student(int stuNo,String name,(代
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编写Java应用程序。首先,定义描述学生的类——Student,包括学号(int) 姓名(String)年龄(int)等属性;二个方法:Student(int stuNo,String name,(代相关的知识,希望对你有一定的参考价值。
package liu0917; public class Student { int stuNO; String name; int age; void outPut() { System.out.println("学号是:"+stuNO); System.out.println("名字是:"+name); System.out.println("年龄是:"+age); } }
package liu0917; import java.util.Scanner; public class TestClass { public static void main(String[] args) { Student stu = new Student(); Scanner sc = new Scanner(System.in); Scanner sc1 = new Scanner(System.in); System.out.println("请输入学号:"); stu.stuNO=sc.nextInt(); System.out.println("请输入姓名:"); stu.name=sc1.nextLine(); System.out.println("请输入年龄:"); stu.age=sc.nextInt(); stu.outPut(); } }
以上是关于编写Java应用程序。首先,定义描述学生的类——Student,包括学号(int) 姓名(String)年龄(int)等属性;二个方法:Student(int stuNo,String name,(代的主要内容,如果未能解决你的问题,请参考以下文章
编写Java应用程序。首先,定义描述学生的类——Student,包括学号(int) 姓名(String)年龄(int)等属性;二个方法:Student(int stuNo,String name,(代