Answer:
See the code below and the algorithm explanation on the figure.
Explanation:
The explanation in order to get the answer is given on the figure below.
Solving this problem with C. The program is given below:
#include <stdio.h>
int main(void) {
int n, Even=0, Odd=0, Zeros=0;
for (;;) {
printf("\nEnter the value the value that you want to check(remember just integers): ");
//IF we input a non-numeric character the code end;
if (scanf("%d", &n) != 1) break;
if (n == 0) {
Zeros++;
}
else {
if (n % 2) {
Even++;
}
else {
Odd++;
}
}
}
printf("for this case we have %d even, %d odd, and %d zero values.", Even, Odd, Zeros);
return 0;
}
The action that an operating system performs is that it facilitates a computer's basic functions between hardware and software.
<h3>What is the purpose of an operating system in a computer?</h3>
An operating system (OS) is known to be a term that is used in computing and it is said to be one which the program, after being started is said to be loaded into the computer using the boot program.
It is one that helps to handle all of the other application programs in a computer.
The application programs is known to also make use of the operating system and as such, The action that an operating system performs is that it facilitates a computer's basic functions between hardware and software.
Learn more about operating system from
brainly.com/question/22811693
#SPJ1
0, a square has 4 right angles