Answer to Question #326249 in C for EmEm

Question #326249

Odd-Even-inator

by CodeChum Admin

My friends are geeking out with this new device I invented. It checks if a number is even or odd! 🤯 


Do you want to try it out?


Instructions:

  1. In the code editor, you are provided with a function that checks whether a number is even or odd.
  2. Your task is to ask the user for the number of integer, n, they want to input and then the actual n number values. For each of the number, check whether it is even or odd using the function provided for you.
  3. Make sure to print the correct, required message.

Input


1. Integer n

2. N integer values


1
Expert's answer
2022-04-10T03:12:00-0400
#include <stdio.h>

int main()
{
    int i, n;
    printf("Enter n: ");
    scanf("%d", &n);
    getchar();
    int arr[n];
    printf("Enter %d integer values:\n");
    for (i=0; i<n; i++)
        scanf("%d", &arr[i]);
    printf("\nRezult:\n");
    for (i=0; i <n; i++)
    {
        if (arr[i] % 2 == 0)
            printf("%d - Even\n", arr[i]);
        else
            printf("%d - Odd\n", arr[i]);;
    }
    getchar();
    return 0;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS