java的GUI:个人所得税计算

GUI的应用

项目名称:个人所得税计算器
背景:是当工资超过标准是有收个人所得税,我假设只扣0.05的公积金,还有0.1的保险,之后就是用户可支配的部分
思路:是利用GUI的图形用户界面,用接口来写了公积金,还有保险的费用,然后通过注册事件对其做出反应
最后的窗口
在这里插入图片描述代码
接口
1

public interface YangLao {
	public abstract double getYl(double a);

}

2

public interface BaoXian {
       public abstract double getBx(double a);
}

实现

import java.awt.*;
import java.awt.event.*;
/**
*@author 作者 Your-Name:
*@version 创建时间:
*类说明:个人所得税计算器
*/
public class Dome12 implements YangLao,BaoXian{
	static double a,b,c;
	//公积金
    public double getYl(double g)
    {
    	return (g * 0.05);
    }
    //保险
    public double getBx(double g)
    {
    	return (g * 0.1);
    }
	public static void main(String[] args) {
		
		Dome12 d = new Dome12();
		Frame f = new Frame();
		Font f1 = new Font("楷体",Font.BOLD,20);
		Font f2 = new Font("宋体",Font.BOLD,14);
		f.setBounds(200,200,400,400);
		f.setLayout(null);
		f.setVisible(true);
		f.setBackground(Color.GREEN);
		f.addWindowListener(new WindowAdapter() {
			public void windowClosing(WindowEvent w)
			{
				System.exit(0);
			}
		});
		Label l1 = new Label("个人所得税计算器");
		l1.setBounds(110,30,170,40);
		l1.setFont(f1);
		f.add(l1);
		Label l2 = new Label("请输入税前工资:");
		l2.setBounds(20,80,110,30);
		l2.setFont(f2);
		f.add(l2);
		TextField t1 = new TextField();
		t1.setBounds(140,80,100,30);
		t1.setFont(f2);
		f.add(t1);
		Label l3 = new Label("公积金:");
		l3.setBounds(30,190,50,30);
		l3.setFont(f2);
		f.add(l3);
		TextField t2 = new TextField(50);
		t2.setBounds(80,190,100,30);
		t2.setFont(f2);
		f.add(t2);
		Label l4 = new Label("保险:");
		l4.setBounds(30,230,40,30);
		l4.setFont(f2);
		f.add(l4);
		TextField t3 = new TextField(50);
		t3.setBounds(80,230,100,30);
		t3.setFont(f2);
		f.add(t3);
		Label l5 = new Label("税后工资:");
		l5.setFont(f2);
		l5.setBounds(30,280,70,30);
		f.add(l5);
		TextField t4 = new TextField(50);
		t4.setBounds(110,280,100,30);
		t4.setFont(f2);
		f.add(t4);
		Button b1 = new Button("查询");
		b1.setBounds(130,140,100,40);
		b1.setFont(f2);
		b1.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent c)
			{
				a = Double.parseDouble(t1.getText());
				if(a > 5000)
				{
					t2.setText("" + (d.getYl(a)) + "元");
					t3.setText("" + (d.getBx(a)) + "元");
					t4.setText("" + (a - d.getYl(a) - d.getBx(a)) + "元");
				}
				else
				{
					t2.setText("" + 0 + "元");
					t3.setText("" + 0 + "元");
					t4.setText("" + a + "元");
				}
			}
		});
		f.add(b1);
		Label l6 = new Label("注意:只有超过5000元的才收税,公积金:0.5%,保险:1%");
		l6.setBackground(Color.white);
		l6.setForeground(Color.red);
		l6.setBounds(15,320,370,30);
		l6.setFont(f2);
		f.add(l6);
		

	}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值