141k views
2 votes
How many inputs are included in the following requirement? REQUIREMENT: Write a program that asks the employee for their age. The program must subtract the age from 65, and display the age, followed by the number of years left to retirement.

User Josh Jay
by
7.5k points

1 Answer

1 vote

Answer:

The correct answer for the given question is 1

Step-by-step explanation:

Following are the program in c language

#include<stdio.h> // header file

#include<conio.h> //header file

void main() // main method

{

int age,retiredAge; // variable

clrscr(); // clear screen

printf("Enter Age : ");

scanf("%d",&age); // input age

printf("************************");

retiredAge = (65-age); // calculating retired age

printf("\\Your Age is %d",age);

if(retiredAge<0) // checking condition

{

printf("\\You are already cross the retired age. Or Enter Invalid Age.");

}

else

{

printf("\\No of Years Left to retired is %d",retiredAge); // dsiplay age

}

getch();

}

Output:

Enter Age : 50

************************

Your Age is 50

No of Years Left to retired is 15

Here Age is the only required input to calculate the retirement age of employee. if entered age is greater than 65 then a message is printed " You are already cross the retired age. Or Enter Invalid Age. " if entered age is valid then retiredAge is calculated with the formula retiredAge = (65-age). and finally display the age,followed by the number of years left to retirement.

Therefore 1 input are required for the above program.

User Chuysbz
by
7.5k points