- 论坛徽章:
- 0
|
第一个自己写的JAVA程序~~~一开始出现17个错误~~现在只出先了1个
找了老天找不到错误~~
帮忙看下可以不?
- import javax.swing.*;
- public class AdminHour
- {
- public static void main(String[] args)
- {
- Emplogee[] staff = new Emplogee[3];
-
- String input = JOptionPane.showInputDialog
- ("how much money for A take");
- int k = Integer.parseInt(input);
- input = JOptionPane.showInputDialog
- ("how much money for B take");
- int k1 = Integer.parseInt(input);
- input = JOptionPane.showInputDialog
- ("how much money for C take");
- int k2 = Integer.parseInt(input);
- input = JOptionPane.showInputDialog
- ("How much add ");
- int add = Integer.parseInt(input);
- staff[0] = new Emplogee("A",k,add);
- staff[1] = new Emplogee("B",k1,add);
- staff[2] = new Emplogee("c",k2,add);
- for(int i = 0; i<staff.length;i++)
- staff[i].getAdd(5);
- for(int i = 0;i < staff.length; i++)
- {Emplogee e = staff[i];
- System.out.println("name" + e.getName() + ",Omoney" + e.getOmoney() + ",Nmoney" + e.getNmoney());
- }
- }
- }
- class Emplogee
- {
- public Emplogee (String n ,double s, int add)
- {name = n;
- money = s;
- Hadd = add;
- }
- public String getName()
- {
- return name;
- }
- public double getOmoney()
- {
- return money;
- }
- public double getNmoney()
- {
- return Hadd;
- }
- public void getAdd(int byPercent)
- {
- double raise = money * byPercent / 100;
- Hadd += raise;
- }
- private String name;
- private double money;
- private double Hadd;
- }
复制代码 |
|