write a program in QBASIC to accept a day between monday to sunday and print whether it is a weekly or holiday
Answers
Answered by
2
Answer:
Please mark me as brainliest........
Explanation:
/**
* C program to print day name of the week
*/
#include<stdio.h>
int main()
{
int week;
/*Input week number from user
*/printf("Enter week number between 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 number");
}
return O;
}
Similar questions
Hindi,
3 months ago
English,
3 months ago
Math,
3 months ago
Computer Science,
7 months ago
Physics,
1 year ago
Political Science,
1 year ago
Science,
1 year ago