Write a program that allows a user to enter a number from 1 to 7 and convert the number to its corresponding day, where 1 is considered for displaying ‘sunday' , 2 for ‘monday' and so on without using switch structure. (use if-elseif-else structure)
Answers
Answered by
5
ANSWER
...........
THE PROGRAM IS GIVEN BELOW
............
/**
*
C program to print day name of week
*/
#include
<stdio.h>
int main()
{
int week
; /*
Input week number from user
*/ printf
("Enter week number (1-7): ")
; scanf
("%d", &week)
; if(week == 1)
{
printf
("Monday");
}
else if
(week == 2)
{
printf
("Tuesday");
}
else if(week == 3)
{
printf("Wednesday");
}
else
if(week == 4)
{
printf("Thursday");
}
else if
(week == 5)
{
printf
("Friday");
}
else
if(week == 6)
{
printf
("Saturday");
}
else if(week == 7)
{
printf
("Sunday")
;
}
else
{
printf
("Invalid Input! Please enter week number between 1-7.");
}
return 0
; }
...........
THE PROGRAM IS GIVEN BELOW
............
/**
*
C program to print day name of week
*/
#include
<stdio.h>
int main()
{
int week
; /*
Input week number from user
*/ printf
("Enter week number (1-7): ")
; scanf
("%d", &week)
; if(week == 1)
{
printf
("Monday");
}
else if
(week == 2)
{
printf
("Tuesday");
}
else if(week == 3)
{
printf("Wednesday");
}
else
if(week == 4)
{
printf("Thursday");
}
else if
(week == 5)
{
printf
("Friday");
}
else
if(week == 6)
{
printf
("Saturday");
}
else if(week == 7)
{
printf
("Sunday")
;
}
else
{
printf
("Invalid Input! Please enter week number between 1-7.");
}
return 0
; }
Similar questions
Computer Science,
8 months ago
Math,
8 months ago
Biology,
1 year ago
Math,
1 year ago
Geography,
1 year ago
Computer Science,
1 year ago
Chemistry,
1 year ago