Golang语言学习从入门到实战----基于Golang实现简单家庭收支项目

在这里插入图片描述

Hello,我是普通Gopher,00后男孩,极致的共享主义者,想要成为一个终身学习者。专注于做最通俗易懂的计算机基础知识类公众号。每天推送Golang技术干货,内容起于K8S而不止于K8S,涉及Docker、微服务、DevOps、数据库、虚拟化等云计算内容及SRE经验总结
=======================
初次见面,我为你准备了100G学习大礼包:
1、《百余本最新计算机电子图书》
2、《30G Golang学习视频》
3、《20G Java学习视频》
4、《90G Liunx高级学习视频》
5、《10G 算法(含蓝桥杯真题)学习视频》
6、《英语四级,周杰伦歌曲免费送!》
路过麻烦动动小手,点个关注,持续更新技术文章与资料!

基于Golang实现简单家庭收支项目

GitHub地址:https://github.com/PlutoaCharon/Golang_FamilyAccount.git

该项目可以简单的进行,明细,登记收入和支出操作

实现界面:

-----------------家庭收支记账软件-----------------
                  1 收支明细
                  2 登记收入
                  3 登记支出
                  4 退出软件
请选择(1-4):

目录结构

└─FamilyAccount
    │  README.md
    │
    ├─main
    │      mian.go
    │
    └─utils
            familyAccount.go

familyAccount.go

package utils

import (
	"fmt"
)

type FamilyAccount struct {
	key     string  // 保存接受用户输入的选项
	loop    bool    // 控制是否退出for
	balance float64 // 定义账户的余额
	money   float64 // 每次收支的金额
	note    string  // 每次收支的说明
	flag    bool    // 记录是否有收支的行为
	details string  // 对收支进行拼接处理
}

//构造方法,返回一个*FamilyAccount实例
func NewFamilyAccount() *FamilyAccount {

	return &FamilyAccount{
		key:     "",
		loop:    true,
		balance: 10000.0,
		money:   0.0,
		note:    "",
		flag:    false,
		details: "收支\t账户金额\t收支金额\t说明",
	}

}

// 显示明细
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%v\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%v\t%v", this.balance, this.money, this.note)
	this.flag = true
}

// 退出系统
func (this *FamilyAccount) exit() {
	fmt.Println("确认退出吗? 确定退出请输入y 否则输入n")
	choice := ""
	for {
		fmt.Scanln(&choice)
		if choice == "y" {
			this.loop = false
			break
		} else if choice == "n" {
			break
		}
		fmt.Println("输入有误,请重新输入 y/n")
	}
}

// 显示主菜单
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 {
			break
		}
	}

}

mian.go

package main

import "FamilyAccount/utils"

func main() {
	utils.NewFamilyAccount().MainMenu()
}

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值