In this article I would like to share with you a sample program that will ask the user to give a number between 1 to 7 and then our program will check if the given number by the user what day it belongs to. For example the user give 1 it will fall on Monday as day of the week. The code demonstrate how to use switch statement in C# programming language. I hope you will find my work useful. Thank you.
Add me at Facebook my address is jakerpomperada@gmail.com and jakerpomperada@yahoo.com.
My email address are the following jakerpomperada@gmail.com and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
Sample Program Output
Program Listing
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
// Print day of the week using switch statement
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int days = 0;
Console.Clear();
Console.Write("\n\n");
Console.Write("Days of the Week Program ");
Console.Write("\n\n");
Console.Write("Give the number between 1 to 7 : ");
days = Convert.ToInt32(Console.ReadLine());
Console.Write("\n\n");
switch (days)
{
case 1: Console.Write("The day you have selected in Sunday.");
break;
case 2: Console.Write("The day you have selected in Monday.");
break;
case 3: Console.Write("The day you have selected in Tuesday.");
break;
case 4: Console.Write("The day you have selected in Wednesday.");
break;
case 5: Console.Write("The day you have selected in Thursday.");
break;
case 6: Console.Write("The day you have selected in Friday.");
break;
case 7: Console.Write("The day you have selected in Saturday.");
break;
default: Console.Write("Invalid Day. Please Try Again.");
break;
}
Console.Write("\n\n");
Console.Write("End of Program.");
Console.Write("\n\n");
Console.ReadLine();
}
}
}
No comments:
Post a Comment