package com.lianxi; public class Student { // 编写Java应用程序。首先,定义描述学生的类——Student,包括学号(int)、 // 姓名(String)、年龄(int)等属性;二个方法:Student(int stuNo,String name,int age) // 用于对对象的初始化,outPut()用于输出学生信息。其次,再定义一个主类—— // TestClass,在主类的main方法中创建多个Student类的对象,使用这些对象来测 // 试Student类的功能。 int stuNO,age; String name; Student(int stuNo,String name,int age) { this.stuNO=stuNo; this.name=name; this.age=age; } void outPut() { System.out.println("学号 :"+stuNO+" 姓名 :"+name+" 年龄 :"+age); } public static void main(String[] args) { Student s1=new Student(13254,"张三",21); s1.outPut(); } }
// 编写一个Java应用程序,该应用程序包括2个类:Print类和主类E。Print
// 类里有一个方法output()功能是输出100 ~ 999之间的所有水仙花数(各位数字的
// 立方和等于这个三位数本身,如: 371 = 33 + 73 + 13。)在主类E的main方法中来
// 测试类Print。
public class Print { void output() { System.out.println("所有的水仙花数是"); for(int x=1;x<10&&x>=1;x++) { for(int y=0;y<10&&x>-1;y++) { for(int z=0;z<10&&x>-1;z++) { if(x*x*x+y*y*y+z*z*z==x*100+y*10+z) { System.out.println(x+""+y+""+z); } } } } } public static void main(String[] args) { // TODO 自动生成的方法存根 Print p1=new Print(); p1.output(); } }
时间: 2024-10-27 11:02:24