You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
482 B

void insert_account(FILE *fp)//新建账户模块函数
{
BANKACCOUNT newaccount;
printf("请输入账号信息\n");
printf(">>账号:");
scanf("%d",&(newaccount.account));
printf(">>密码:");
scanf("%d",&(newaccount.key));
printf(">>姓名:");
scanf("%s",newaccount.name);
printf(">>余额:");
scanf("%f",&(newaccount.balance));
fseek(fp,0L,SEEK_END);
fprintf(fp,"%d %d %s %.2f\n",newaccount.account,newaccount.key,newaccount.name,newaccount.balance);
}