| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1371 人关注过本帖
标题:【求助】对于文件的特定数据进行更新,最后一步实现不了,求解,代码如下
取消只看楼主 加入收藏
歆歆然
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2017-11-13
结帖率:66.67%
收藏
已结贴  问题点数:13 回复次数:3 
【求助】对于文件的特定数据进行更新,最后一步实现不了,求解,代码如下
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
struct data
{
    char account[20];
    char password[20];
    char name[20];
    float balance;
};
#define N 3
int main()
{
    int i;
    struct data st,user,user1,user2;
    char account[20],auser[20],nuser[20];
    char password[20];
    int m;
    float money;
    scanf("%s",account);
    scanf("%s",password);
    FILE *fp,*fpmaster,*fpuser;
    fp=fopen("data002.dat","rb");
    if(fp==NULL)
    {
        printf("Cannot open file strike any key exit!");
        exit(0);
    }
    for(i=0;i<3;i++)
    {
        fseek(fp,i*sizeof(struct data),SEEK_SET);
        fread(&st,sizeof(struct data),1,fp);
        if(strcmp(st.account,account)==0&&strcmp(st.password,password)==0)
        {
            printf("%s %s %s %.2f\n",st.account,st.password,st.name,st.balance);
            fpmaster=fp;
            printf("————————-\n");
            break;
        }   
    }
    printf("请输入转账用户账号:");
    scanf("%s",auser);
    printf("请输入转账用户用户名:");
    scanf("%s",nuser);
    printf("请输入转账金额: ");
    scanf("%f",&money);
    for(i=0;i<3;i++)
    {
        fseek(fp,i*sizeof(struct data),SEEK_SET);
        fread(&user,sizeof(struct data),1,fp);
        if(strcmp(user.account,auser)==0&&strcmp(user.name,nuser)==0)
        {
            user.balance+=money;
            st.balance-=money;
            printf("%s %s %s %.2f\n",user.account,user.password,user.name,user.balance);
            printf("%s %s %s %.2f\n",st.account,st.password,st.name,st.balance);
            fpuser=fp;
            printf("————————-\n");
            break;
        }   
    }
    fclose(fp);
    //更新
    fp=fopen("data002.dat","rb+");
    if(fp==NULL)
    {
        printf("Cannot open file strike any key exit!");
        exit(0);
    }
    for(i=0;i<3;i++)
    {
        fseek(fp,i*sizeof(struct data),SEEK_SET);
        fread(&user,sizeof(struct data),1,fp);
        if(strcmp(st.account,account)==0&&strcmp(st.password,password)==0)
        {
            fwrite(&st,sizeof(struct data),1,fp);
            break;
        }
    }
    for(i=0;i<3;i++)
    {
        fseek(fp,i*sizeof(struct data),SEEK_SET);
        fread(&user,sizeof(struct data),1,fp);
        if(strcmp(user.account,auser)==0&&strcmp(user.name,nuser)==0)
        {
            fwrite(&user,sizeof(struct data),1,fp);
            break;
        }
    }
    fclose(fp);
    return 0;
}
搜索更多相关主题的帖子: struct data password user printf 
2018-01-06 20:17
歆歆然
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2017-11-13
收藏
得分:0 
回复 2楼 吹水佬
转账的用户是user,登陆的账户时st
2018-01-07 13:36
歆歆然
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2017-11-13
收藏
得分:0 
data002.zip (622 Bytes)
2018-01-07 13:37
歆歆然
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2017-11-13
收藏
得分:0 
回复 6楼 吹水佬
对,谢谢
2018-01-08 08:16
快速回复:【求助】对于文件的特定数据进行更新,最后一步实现不了,求解,代码如 ...
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.031232 second(s), 10 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved