7-4 Java-output using console window-1
分数 10
全屏浏览
切换布局
作者 马新娟
单位 山东理工大学
Write a Java application program that uses three statements to display on screen your
Student ID, Name and Course, similar to that shown in Figure 1.
输入格式:
输出格式:
Student ID: 12345678
Name: Joe Citizen
Course: Software Development
输入样例:
输出样例:
Student ID: 12345678 Name: Joe Citizen Course: Software Development
代码长度限制
16 KB
时间限制
400 ms
内存限制
64 MB
栈限制
8192 KB
public class Main { public static void main(String [] args) { System.out.println("Student ID: 12345678"); System.out.println("Name: Joe Citizen"); System.out.println("Course: Software Development"); } }