0

所以我试图让这个特定的程序打开一个文件,将这些元素放入一个结构中,然后输出其中一个变量(看看它是否工作)。不幸的是,我什至无法启动程序,因为我的 void main 告诉我它已更改为 int,然后说 main 必须返回 int。我是 C++ 新手,因此没有意识到这可能是 main 的一个简单错误。但是,我不确定它是否适用于字符串的结构。文件中的示例文本:

姓氏 血型 器官 年龄 年份(承认) Casby A 心脏 35 2012 Jorde B 肾脏 20 2009 等等....

我将非常感谢对该程序的任何帮助,因为这将使我能够完成实际程序的其余部分(将两个变量比较为 ==/显示最低年份...

#include <iostream>
#include <stdlib.h>
#include <fstream>
#include <stdio.h>
#include <string>
#include <sstream>
#include <iomanip.h>

using namespace std;

ifstream patientin;
struct Patient {
    string surname;
    char Btype;
    string organ;
    int age, year;
};

void open(){
    patientin.open("patient.txt");
    if (patientin ==  NULL){
    cout <<"\nCan't open the file. Restart." << endl;
    exit(1);
    }

}

void close(){

    patientin.close();
}

void getFileInfo(){

        const int Max = 4;
        int i = 0;
        Patient records[Max];
            while (i <= Max){
            patientin >> records[i].surname;
            patientin >> records[i].Btype;
            patientin >> records[i].organ;
            patientin >> records[i].age;
            patientin >> records[i].year;
        }
                cout << records[0].surname << endl;

}


void main (){

open();
getFileInfo();
close();

}
4

1 回答 1

0

您的许多问题中的第一个问题在这里:

void main ()

主要必须返回int。一些编译器可能会让你侥幸逃脱void,但这是非标准的。

int main() { ... }

或者

int main(int argc, char** argv) { ... }

是 2 个标准签名main

于 2013-10-09T01:52:26.460 回答