1 Star 6 Fork 1

Mikoto/Linux下用C语言实现银行小系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
trans_act.c 1.15 KB
一键复制 编辑 原始数据 按行查看 历史
Mikoto 提交于 2020-12-11 11:03 . bank_1.0 code
#include <stdio.h>
#include <unistd.h>
#include <signal.h>
#include <sys/ipc.h>
#include <sys/msg.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include "struct.h"
#include "tools.h"
int trans_act(Account* act,int flag)
{
char filename[40] = {};
sprintf(filename,"%ld.txt",act->user);
int fd = open(filename,O_RDWR,0644);
if(0 > fd)
{
puts("帐号不存在");
return -1;
}
if(0 == flag)
{
printf("转入的目标账户:%ld\n",act->user);
close(fd);
return 0;
}
Account buf = {};
read(fd,&buf,sizeof(Account));
printf("原:%.2lf\n",buf.money);
if(1 == flag)
{
buf.money += act->money;
}
else if(2 == flag)
{
buf.money -= act->money;
}
act->money = buf.money;
printf("现:%.2lf\n",buf.money);
fd = open(filename,O_RDWR|O_TRUNC,0644);
write(fd,&buf,sizeof(Account));
close(fd);
return 0;
}
int main()
{
int msgid = msgget(key,0);
if(0 > msgid)
{
perror("msgget");
return -1;
}
for(;;)
{
Msg msg = {};
msgrcv(msgid,&msg,sizeof(Msg),311,MSG_NOERROR);
int ret = trans_act(&msg.act,msg.flag);
if(0 != ret)
{
msg.flag = -1;
}
msg.type = 113;
msgsnd(msgid,&msg,sizeof(Msg),0);
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/mikoto-10032/bank.git
git@gitee.com:mikoto-10032/bank.git
mikoto-10032
bank
Linux下用C语言实现银行小系统
master

搜索帮助