This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package UserOperation; | |
import UserInfo.Adult; | |
import UserInfo.Child; | |
import UserInfo.Old; | |
import java.io.File; | |
import java.io.FileNotFoundException; | |
import java.io.FileReader; | |
import java.util.ArrayList; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
/** | |
* 在线订餐系统 | |
* | |
* @author slagtall | |
* @datetime 2023/6/21 10:08 | |
*/ | |
public class OrderOnlineeFood { | |
public static void main(String[] args) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; | |
/** | |
* 实现员工信息输入 | |
* | |
* @author virgil | |
* @datetime 2023/6/20 10:03 | |
*/ | |
public class IncomeTax { | |
public static void main(String[] args) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 包含员工名称,工资,加班补贴 | |
* | |
* @author virgil | |
* @datetime 2023/6/20 10:01 | |
*/ | |
public class Employee { | |
private String name; | |
private double salary; | |
private double subsidy; |