วันเสาร์ที่ 6 กรกฎาคม พ.ศ. 2556

การแสดงข้อมูลโดยใช้ JOptionPane (ภาษาจาวา)

การแสดงข้อมูลโดยใช้ JOptionPane โดยใช้เมธอด (method) showMessageDialog
import javax.swing.JOptionPane;

public class HW01 {

    public static void main(String[] args) {
        String name = "Warawut";
        String surname = "Khangkhan";
        String department = "Information";
        
        JOptionPane.showMessageDialog(null, "Name: " + name + "  " + surname + "\nDepartment: " + department, "Information", JOptionPane.INFORMATION_MESSAGE);
    }
}

ไม่มีความคิดเห็น:

แสดงความคิดเห็น