1

txt から名前と数値を取得し、文字列か数値かに応じてそれらを配列に追加するプログラムを作成しています。

私の現在のプログラムはこれです:

#include <stdio.h>

int main() {
    FILE * ifp = fopen("input.txt","r");
    FILE * ofp = fopen ("output.txt", "w");
    int participants = 0, i , j;
    char name [10];
    int grade [26];

    fscanf(ifp, "%d", &participants);

    for (i = 1; i < participants; i++) {
        fscanf(ifp, "%s", name);          
        for (j = 0; j < 8; j++) {
            fscanf(ifp, "%d", &grade[j]);  
        }
    }

    printf( "%d\n", participants);
    printf( "%s\n", name);
    printf( "%d\n", grade);

    fclose(ifp);
    fclose(ofp);

    return 0;
}

私の出力はこれです:

2
Optimus
2686616

私のtxtファイルはこれです:

2 
Optimus 
45 90 
30 60 
25 30 
50 70 
Megatron 
5 6 
7 9 
3 4 
8 10 

代わりに次のように表示されるようにする方法に関するアイデアは次のとおりです。

2 
Optimus 
Megatron 
45 
90 
30 
60 
25 
30 
50 
70 
5 
6 
7 
9 
3 
4 
8 
10 
4

2 に答える 2

0

要求された形式でデータを保存するには、値を保存するために 2D 配列が必要です。参加者の数はアプリオリにはわからないため、必要なスペースを動的に割り当て、後で解放する必要があります。以下のように、コードの作り直されたバージョンを見つけてください

#include <stdio.h>
#include <stdlib.h>

int main() 
{
    FILE * ifp = fopen("input.txt","r");
    FILE * ofp = fopen ("output.txt", "w");
    int participants = 0, i , j;
    char **name; // Changed the name to a 2D array
    int **grade; // Changed the grade to a 2D array
    char *curname; // Temp pointer to current name
    int  *curgrade; // Temp pointer to current array of grades



    fscanf(ifp, "%d", &participants);

    // Allocate memory
    name = malloc((sizeof(char *) * participants)); // Allocate pointers to hold strings for the number of participants
    grade = malloc((sizeof(int *) * participants)); // Allocate pointers to hold grades for the number of participants

    for(i = 0; i < participants; i++) {
        name[i] = malloc((sizeof(char) * 10)); //Assumption: Name doesn't exceed 10 characters
        grade[i] = malloc((sizeof(int) * 8)); // Assumption: Only 8 grades
   }

    for (i = 0; i < participants; i++) { /* Fixed: index i should start from 0 */
        curname = name[i]; // Get pointer to current name
        curgrade = &grade[i][0]; // Get pointer to array of current grades
        fscanf(ifp, "%s", curname); // Read name into current name pointer
        for (j = 0; j < 8; j++) {
            fscanf(ifp, "%d", &curgrade[j]); // Read grades into current array
        }
    }


    printf("%d\n", participants);
    for(i = 0; i < participants; i++) {
        printf("%s\n", name[i]);
    }
    for(i = 0; i < participants; i++) {
        curgrade = &grade[i][0];
        for (j = 0; j < 8; j++) {
            printf("%d\n", curgrade[j]);
        }
    }

    fclose(ifp);
    fclose(ofp);

    for(i = 0; i < participants; i++) {
        free(name[i]); // Free the array of individual names
        free(grade[i]); // Free the array of grades for every participant
    }

    free(grade); // Free the grades pointer
    free(name); // Free the names pointer

return 0;

}

于 2013-03-23T01:43:03.260 に答える
0

ファイルからトークンを生成するために使用strtokし、改行とスペースで分割してから、各文字列が数値であるかどうかを確認します。それを解析しようとするか、itoaまたはそれに似たものを使用して、解析可能な場合は数値に追加します。

于 2013-03-23T01:22:32.017 に答える