首頁  >  問答  >  主體

c++ - 在VC环境中,使用fwrite 写入浮点数数据异常

#include<stdio.h>
#define SIZE 1
typedef struct
{
    float num;
    float age;
 }student;
 
student stu[SIZE];
 
void save()
{
    FILE *fp;
    int i;
    if((fp=fopen("dat.txt","w"))==NULL)
    {
        printf("无法打开此文件!\n");
        return;
    }
    for(i=0;i<SIZE;i++)
    if(fwrite(&stu[i], sizeof(student), 1, fp) != 1)
    printf("文件写入错误。!\n");
    fclose(fp);
}
 
void main()
{
    int i;
    for(i=0;i<SIZE;i++)
        scanf("%f%f",&stu[i].num,&stu[i].age);
    save();
}

PHP中文网PHP中文网2764 天前974

全部回覆(3)我來回復

  • PHPz

    PHPz2017-04-17 13:56:11

    你可以按 F5 調試,在彈框的時候點重試,會跳到發生異常的點,左邊會有個箭頭標出是哪行造成的錯誤。

    按這裡提供的信息,至少有一處肯定是錯的:

        if((fp=fopen("dat.txt","w"))==NULL)

    要改成:

        if((fp=fopen("dat.txt","wb"))==NULL)

    Windows 下讀寫二進位的文件,開啟方式必須指定 "b" 參數,不然即使不發生執行時期異常,出來的文件資料也不對。

    回覆
    0
  • PHPz

    PHPz2017-04-17 13:56:11

    if(fwrite(&stu[i], sizeof(student), 1, fp) != 1)
    應為
    if(fwrite(stu[i], sizeof(student), 1, fp ) != 1)

    回覆
    0
  • 大家讲道理

    大家讲道理2017-04-17 13:56:11

    ~~就上面的程式碼來看,你的VC6有問題,你試試換個機器就能測試通過

    回覆
    0
  • 取消回覆