Aris系统已上线
HelloWorld
HelloWorld
Created
2025-01-16
|
Updated
2025-02-18
|
Post Views:
你好!世界!
Author:
HitoriKoishi
Link:
https://hitorikoishi.github.io/2025/01/16/HelloWorld/
Copyright Notice:
All articles on this blog are licensed under
CC BY-NC-SA 4.0
unless otherwise stated.
Hello World
Next
c++ whale market项目总结
第一次从无到有的构建了第一个多模块化复杂系统,根据教程完成了界面—系统—文件的三层信息交互,也算是由模仿走向创造的第一步 程序架构 整体的程序大致分为三个主要部分: 用户、商品、订单的数据结构部分,包含对数据结构元素的修改、输出,以及与文件的信息交互 1234567891011121314151617181920212223242526272829303132#pragma once#include <string>class User { public: std::string user_ID; std::string user_name; std::string user_passwd; std::string contact; std::string address; double balance;};// 用户与文件操作void pull_users();void push_users();// 用户获取,添加,与删除User* get_user(int index);bool...
HitoriKoishi
Articles
4
Tags
4
Categories
0
Follow Me
Announcement
record the moment
Recent Posts
Go语言入门
2025-06-24
Google File System 笔记
2025-06-21
c++ whale market项目总结
2025-02-18
HelloWorld
2025-01-16