c – 查找给定整数中的最大偶数

我正在上网C课,但教授拒绝接听电子邮件,我需要一些帮助.

无论如何,我们的任务是编写一个程序,该程序从用户获取一个整数,并找到最大偶数和数字在给定整数中出现的次数.

#include <stdio.h>

void extract(int);
void menu(void);


int main() {
    menu();
}

void menu() {
    int userOption;
    int myValue;
    int extractDigit;

    do {
        printf("\nMENU"
            "\n1. Test the function"
            "\n2. Quit");
        scanf("%d", &userOption);

        switch (userOption) {
        case 1:
            printf("Please enter an int: ");
            scanf("%d", &myValue);

            extractDigit = digitExtract(myValue);

            break;

        case 2:
            printf("\nExiting . . . ");
            break;

        default:
            printf("\nPlease enter a valid option!");
        }
    } while (userOption != 2);
}

void digitExtract(int userValue) {
    int tempValue;
    int x;
    int myArr[10] = { 0 };

    tempValue = (userValue < 0) ? -userValue : userValue;

    do {
        myArr[tempValue % 10]++;
        tempValue /= 10;
    } while (tempValue != 0);


    printf("\nFor %d:\n", userValue);
    for (x = 0; x < 10; x++) {
        printf("\n%d occurence(s) of %d",myArr[x], x);
    }   
}

我已经让程序显示奇数和&偶数位和它的出现.

我坚持的唯一部分是让程序只显示最大的偶数位并且它的出现.我尝试的一切都破坏了程序的逻辑或产生一些奇怪的输出.

关于如何进行的任何提示或想法?

提前谢谢.

最佳答案 运行从最大偶数到最小偶数的循环.

for (x = 8; x >=0; x-=2)
{
    if(myArr[x]>0) //if myArr[x]=0 then x does not exist
    {
        printf("%d occurs %d times",x,myArr[x]);
        break; //we have found our maximum even digit. No need to proceed further
    }

}

注意:要优化,您应计算并存储仅偶数位的出现次数.

点赞