go学习 --- 家庭收支管理系统

package utils

import "fmt"

type FamilyAccount struct {
	//定义一个变量用保存用户输入
	key string
	//定义一个变量用于确定用户是否退出
	choice string
	//定义一个变量用于系统退出
	loop bool
	//定义一个变量是否判断是否收入和支出
	flag  bool
	//定义一个变量用于用户登录名
	name string
	//定义一个变量用于用户登录密码
	pws string
	//定义账户余额
	balance  float64
	//每次收支金额
	money  float64
	//每次收支说明
	note string
	//收支详情
	details string
}
//定义一个工厂模式,用于其它包调用
func NewFamilyAccount() *FamilyAccount {
	account := FamilyAccount{
		"",
		"",
		true,
		false,
		"",
		"",
		10000.0,
		0.0,
		"",
		"收支\t账户余额\t\t收支金额\t\t说  明",
	}
	return &account
}
//用户登录
func (this *FamilyAccount) Land()  {
	//定义一个map
	for  {
		fmt.Println("请输入用户名")
		fmt.Scanln(&this.name)
		if this.name != "老王" {
			fmt.Println("你的用户名不正确,请重新数输入")
			continue
		}
		fmt.Println("请输入密码")
		fmt.Scanln(&this.pws)
		if  this.pws != "666666"{
			fmt.Scanln("你的密码不正确,请重新数输入")
			continue
		}
		this.MainMenu()
		if this.loop == false {
			return
		}
	}
}
//显示收支明细
func (this *FamilyAccount) ShowDetails(){
	fmt.Println("----------当前收支明细----------")
	if this.flag {
		fmt.Println(this.details)
	} else {
		fmt.Println("当前没有任何收入")
	}
}
//登记收入
func (this *FamilyAccount) Income(){
	fmt.Println("本次收入金额:")
	fmt.Scanln(&this.money)
	//修改账户余额
	this.balance += this.money
	fmt.Println("本次收入说明:")
	fmt.Scanln(&this.note)
	//收入情况
	this.details += fmt.Sprintf("\n收入\t%v\t\t%v\t\t\t%v",this.balance,this.money,this.note)
	this.flag = true
}
//登记支出
func (this *FamilyAccount) Pay() {
	fmt.Println("本次支出金额:")
	fmt.Scanln(&this.money)
	if this.money > this.balance{
		fmt.Println("余额不足")
	}
	this.balance -= this.money
	fmt.Println("本次支出说明")
	fmt.Scanln(&this.note)
	this.details += fmt.Sprintf("\n支出\t%v\t\t%v\t\t\t%v",this.balance,this.money,this.note)
	this.flag = true
}
func (this *FamilyAccount) Exit() {
	fmt.Println("你确定要退出吗? y/n")
	for {
		fmt.Scanln(&this.choice)
		if this.choice == "y" || this.choice == "n" {
			break
		}else {
			fmt.Println("请输入正确的选项")
		}
	}
	if this.choice == "y" {
		this.loop = false
		fmt.Println("成功退出家庭收支记账软件")
	}
}
//显示主菜单
func (this *FamilyAccount) MainMenu()  {

	for  {
		fmt.Println("\n-----------家庭收支记账软件----------")
		fmt.Println("            1 收支明细")
		fmt.Println("            2 登记收入")
		fmt.Println("            3 登记支出")
		fmt.Println("            4 退出软件")
		fmt.Print("请选择(1-4):")
		fmt.Scanln(&this.key)
		switch this.key {
		case "1":
			this.ShowDetails()
		case "2":
            this.Income()
		case "3":
			this.Pay()
		case "4":
			this.Exit()
		default:
			fmt.Println("请输入正确的选项")
		}
		if this.loop == false {
			return
		}
	}
}
package main

import "go_code/project01/family/utils"
func main() {
	account := utils.NewFamilyAccount()
	account.Land()
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

鸭鸭老板

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值