编写简单的Java程序,输出你的信息:学 号、姓名、口号、当前的年月日时分秒。
时间: 2024-09-21 07:08:53 浏览: 30
Java输出系统当前的日期(年月日时分秒毫秒)
当然可以。在Java中,你可以创建一个简单的控制台应用程序来展示个人信息。这里是一个基本的例子:
```java
import java.time.LocalDateTime; // 引入日期和时间处理的包
public class StudentInfo {
private String studentID;
private String name;
private String slogan;
public StudentInfo(String studentID, String name, String slogan) {
this.studentID = studentID;
this.name = name;
this.slogan = slogan;
}
public void displayInfo() {
LocalDateTime now = LocalDateTime.now(); // 获取当前日期和时间
System.out.println("学号:" + studentID);
System.out.println("姓名:" + name);
System.out.println("口号:" + slogan);
System.out.println("当前年月日时分秒: " + now);
}
public static void main(String[] args) {
StudentInfo info = new StudentInfo("123456", "张三", "追求卓越");
info.displayInfo();
}
}
```
当你运行这个`main`函数时,它会输出你的学号、姓名、口号以及当前的年月日时分秒。
阅读全文