家庭收支查询

写一个家庭收支明细记账软件1.收支明细2.登记收入  3.登记支出 4.退出

假设生活基金为10000元;

记录每次支出/收入明细,并记录下来,以便下次查询;

import java.util.Scanner;
public class jtsz {
    public static void main(String[] args) {

            String c = "";
            Scanner sc = new Scanner(System.in);

            boolean bol = true;
            while (bol) {
                System.out.println("-------------家庭收支记账记录--------------");
                System.out.println("               1 收支明细                 ");
                System.out.println("               2 登记收入                 ");
                System.out.println("               3 登记支出                 ");
                System.out.println("               4 退  出                  ");
                System.out.println("              请选择  1-4                ");
                int b = 10000;
                int x = sc.nextInt();
                switch (x) {
                    case 1:
                        System.out.println(c);
                        break;
                    case 2:
                        System.out.println("输入收入金额");
                        int shouru = sc.nextInt();
                        b += shouru;
                        System.out.println("输入金额来源");
                        String s = sc.next();
                        c += "本次收入金额" + shouru+"\n";
                        c += "本次收入来源" + s+"\n";
                        break;
                    case 3:
                        System.out.println("输入支出金额");
                        int zhichu = sc.nextInt();
                        System.out.println("输入支出细明");
                        String a = sc.next();

                        c += "本次支出金额" + zhichu+"\n";
                        c += "本次支出细明" + a+"\n";
                        break;
                    case 4:
                        bol = false;
                        break;
                }
            }

    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值