用c语言设计银行储蓄系统
时间: 2023-02-27 19:25:00 浏览: 65
c++课程设计银行储蓄系统.pdf
在设计银行储蓄系统时,需要使用结构体来存储用户的账号、姓名、余额等信息。然后,使用函数实现功能,例如存款、取款、查询余额、修改密码等。最后,使用文件存储所有的用户数据,以保证数据的持久性。代码如下:
```
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
struct customer {
char name[20];
char account[20];
float balance;
};
void deposit(struct customer *c, float amount) {
c->balance += amount;
}
void withdraw(struct customer *c, float amount) {
c->balance -= amount;
}
void check_balance(struct customer *c) {
printf("%s 的余额为:%.2f\n", c->name, c->balance);
}
int main() {
struct customer c1 = {"张三", "123456", 1000.0};
deposit(&c1, 500);
check_balance(&c1);
withdraw(&c1, 200);
check_balance(&c1);
return 0;
}
```
这仅仅是一个简单的代码模板,您可以根据需要进行扩展和完善。
阅读全文