ต้องการให้ผลลัพธ์โปรแกรมจาวา(คำนวณค่าจ้างพนักงาน)ป๊อปอัพทำยังไงค่ะ?? - -

package com.company;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
final int EMPLOYEES = 5; //ประกาศค่าคงที่จำนวนพนักงาน 5 ตน
double payRate; //ตัวเแปรเก็บค่าจ้างรายชั่วโมง
double grossPay; //ตัวแปรเก็บอัตราค่าจ้าง
int[] hours = new int[EMPLOYEES]; //สร้างตัวแปรอาร์เรย์สำหรับเก็บชั่วโมงทำงาน
Scanner keyboard = new Scanner(System.in); //สร้างออบเจ็กต์ข้อมูลทางอินพุต
System.out.println("Enter the hours worked by" +EMPLOYEES + "employees who all earn" + "the same hourly rate");
for (int index = 0; index < EMPLOYEES; index++) //วนลูปรับชั่วโมงทำงานของพนังงาน
{
System.out.print("Employees #" + (index + 1) + ": ");
hours[index] = keyboard.nextInt(); //รับชั่วโมงทำงานมาเก็บในอาร์เรย์
}
System.out.print("Enter the hourly pay rate for each employees:");
payRate = keyboard.nextDouble(); //รับอัตราค่าจ้างต่อชั่วโมง
System.out.println("Here is each employees gross pay:");
for (int index = 0; index < EMPLOYEES; index++) //วนลูปแสดงผลค่าจ้างพนักงานแต่ละคน
{
grossPay = hours[index] * payRate; //คำนวณค่าจ้างพนักงานแต่ละคน
System.out.println("Employees #" + (index + 1) + ": $" + grossPay); //แสดงผล
}
}
} //จบโปรแกรม
แสดงความคิดเห็น
โปรดศึกษาและยอมรับนโยบายข้อมูลส่วนบุคคลก่อนเริ่มใช้งาน อ่านเพิ่มเติมได้ที่นี่