J
J
jillene2015-05-30 17:13:53
C++ / C#
jillene, 2015-05-30 17:13:53

How to output elements from file with condition check?

Tell me, please, there is a structure, full name, gender, age. Entries are entered from the keyboard. It is necessary to save this information to a file, and then display all the men on the screen and in a separate file.
Here is the code for output from the file, but I don't understand how to add a check...

#include "stdafx.h"
#include <cstdio>
 
 
int _tmain(int argc, _TCHAR* argv[])
{
    FILE *file;
    struct Person {
        char name[20]; 
        char gender[20]; 
        unsigned age; 
    };
    struct Person SinglePerson[10];
    char i=0;
 
    file = fopen("e:\\Test.txt", "r");
 
    while (fscanf (file, "%s%s%u", SinglePerson[i].name, &(SinglePerson[i].gender), &(SinglePerson[i].age)) != EOF) {
        printf("%s %s %u\n", SinglePerson[i].name, SinglePerson[i].gender, SinglePerson[i].age); 
        i++;
    }
 
    file = fopen("e:\\fprintf.txt", "w");
 
    while (scanf ("%s%s%u", SinglePerson[i].name, &(SinglePerson[i].gender), &(SinglePerson[i].age)) != EOF) {
        fprintf(file, "%s %s %u\n", SinglePerson[i].name, SinglePerson[i].gender, SinglePerson[i].age); 
        i++;
    }
    fread;
 
    return 0;
}

Answer the question

In order to leave comments, you need to log in

2 answer(s)
E
Eddy_Em, 2015-05-30
@Eddy_Em

Horror something! If the structure is binary, then you need to read it in a piece:

int fd = open("/tmp/myfile", O_RDONLY);
...
if(read(&SinglePerson[i], sizeof(struct Person)) != sizeof(struct Person)){
  // ошибка
}
...

Likewise with recording.

J
jillene, 2015-06-01
@jillene

Made!!!

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
 
#define M 2 // M plus 1 is equals to number of structres
 
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
 
    FILE *file;
    struct Person {
        char name[20]; 
        char gender[20]; 
        unsigned age; 
    };
    struct Person SinglePerson[1];
    char i=0;
    char counter = 0;
 
void InputFromKeyboard () {
    file = fopen("Input.txt", "w");
    while(scanf("%s%s%u", SinglePerson[i].name, SinglePerson[i].gender, &(SinglePerson[i].age)) == 3 && i <= M) {
        fprintf(file, "%s %s %u\n", SinglePerson[i].name, SinglePerson[i].gender, SinglePerson[i].age); 
        counter++;
        i++;
        if (i == M+1) {
            break;
        }
    }
    fclose(file);
};
 
void OutputToFile () {
    file = fopen("Output.txt", "w");
    for (i = 0; i < counter; i++) {
        if (strcmp(SinglePerson[i].gender, "Male") == 0) {
            fprintf(file, "%s %s %u\n", SinglePerson[i].name, SinglePerson[i].gender, SinglePerson[i].age); 
        }
    }
    fclose(file);
}
 
void OutputToScreen () {
    file = fopen("Output.txt", "r");
    for (i = 0; i < counter; i++) {
        if (strcmp(SinglePerson[i].gender, "Male") == 0) {
            printf("%s %s %u\n", SinglePerson[i].name, SinglePerson[i].gender, SinglePerson[i].age); 
        }
    }
    fclose(file);
}
 
int main(int argc, char *argv[]) {
    InputFromKeyboard();
    OutputToFile();
    OutputToScreen();
    return 0;
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question