169k views
3 votes
Write a C program that selects and displays the maxiμm value of five numbers to be entered when the program runs.

a) Display maxiμm value
b) Input five numbers
c) Display miniμm value
d) Input three numbers

User Lorena
by
8.5k points

2 Answers

2 votes

#include <stdio.h>

int main() {

int numbers[5];

// Input five numbers

printf("Enter five numbers:\\");

for (int i = 0; i < 5; ++i) {

printf("Number %d: ", i + 1);

scanf("%d", &numbers[i]);

}

// Find the maximum value

int max = numbers[0];

for (int i = 1; i < 5; ++i) {

if (numbers[i] > max) {

max = numbers[i];

}

}

// Display the maximum value

printf("Maximum value: %d\\", max);

return 0;

}

This program uses an array to store the five input numbers and then iterates through the array to find and display the maximum value.

User ScoPi
by
8.0k points
3 votes

Final answer:

To write a C program that selects and displays the maximum value of five numbers, you can use a loop to prompt the user to enter five numbers and keep track of the maximum value. Here's an example: Hence the correct answer is option A

Step-by-step explanation:

To write a C program that selects and displays the maximum value of five numbers, you can use a loop to prompt the user to enter five numbers and keep track of the maximum value. Here's an example:

#include <stdio.h>

int main() {
int i, num;
int max = -2147483647;

printf("Enter five numbers:\\");

for (i = 0; i < 5; i++) {
scanf("%d", &num);

if (num > max) {
max = num;
}
}

printf("The maximum value is %d\\", max);

return 0;
}

In this program, we use a variable 'max' to store the maximum value. We initialize it to a very low value initially (-2147483647) so that any number entered by the user will be greater than 'max'. We compare each input number with 'max' and update 'max' if the input number is larger. Finally, we print the maximum value.

Hence the correct answer is option A

User Bunny
by
7.7k points