简体   繁体   English

计算文件中的重复数字

[英]Count repeated numbers in a file

So I'm having this file myFile.txt with the following numbers in it: 1 2 3 4 5 6 7 8 9 0 2 3 4 5 6 6 5 4 3 2 1 .所以我有这个文件myFile.txt ,其中包含以下数字: 1 2 3 4 5 6 7 8 9 0 2 3 4 5 6 6 5 4 3 2 1 I'm trying to write a program that calculates how many times a number from 0 to 9 is repeated, so it would be printed out like that Number %d repeats %d times .我正在尝试编写一个程序来计算从09的数字重复了多少次,所以它会像Number %d repeats %d times一样打印出来。 Right now I'm stuck at printing out the n number of elements of that file, so in example, if I would like to calculate how many times the 15 first numbers repeat themselves, firstly I would print out those 15 numbers, then the number of times each number repeats.现在我坚持打印出该文件的 n 个元素,例如,如果我想计算前 15 个数字重复自己的次数,首先我会打印出这 15 个数字,然后是数字每个数字重复的次数。 But when I'm trying to print out those 15 numbers, it prints me this: 7914880640-10419997104210821064219560-1975428800327666414848 .但是当我试图打印出这 15 个数字时,它会打印出这个: 7914880640-10419997104210821064219560-1975428800327666414848

Here's the code:这是代码:

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

int main() {
    FILE *fp;
    fp = fopen("myFile.txt", "r");
    char c;
    int n, i, count = 0;

    for (c = getc(fp); c != EOF; c = getc(fp)) {
        if (!(c == ' '|| c == '\n'))
            count = count + 1;
    }
    printf("The amount of numbers is:%d\nTill which element of the list would you like to count the amount of the each element: \n", count);
    scanf("%d", &n);
    int a[n];
    if (n <= count) {
        for (i = 0; i < n; i++) {
            fscanf(fp, "%d", &a[i]);
        }
        for (i = 0; i < n; i++) {
            printf("%d", a[i]);
        }
    } else {
        printf("Error");
    }
    fclose(fp);
    return 0;
}

That's the final solution.这就是最终的解决方案。

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

int count_occur(int a[], char exist[], int num_elements, int value)
{
    int i, count = 0;
    for (i = 0; i<num_elements; i++)
    {
        if (a[i] == value)
        {
            if (exist[i] != 0)
                return 0;
            ++count;
        }
    }
    return(count);
}

int main()
{
    int a[100],track[10];
    FILE *fp;
    fp = fopen("myFile.txt", "r");
    char c,exist[20]= {0};
    int n,i,num,count=0,k=0,eval;
    for (c = getc(fp); c != EOF; c=getc(fp))
    {
        if (!(c==' '|| c=='\n'))
            count=count+1;
    }
    rewind(fp);
    printf("The amount of numbers is:%d\nTill which element of the list would you like to count the amount of the each element: \n", count);
    scanf("%d", &n);
    if (n<=count)
    {
        while(fscanf(fp, "%d", &num) == 1)
        {
            a[k] = num;
            k++;
        }
        for (i=0; i<n; i++)
        {
            printf("%d ", a[i]);
        }
    }
    else
    {
        printf("Error");
    }

    fclose(fp);
    if (n<=count)
    {
        for (i = 0; i<n; i++)
        {
            eval = count_occur(a, exist, n, a[i]);
            if (eval)
            {
                exist[i]=1;
                printf("\nNumber %d was found %d times\n", a[i], eval);
            }
        }
    }

    return 0;
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM