c#五个自然日 工作日计算
从工作日编号打印工作日名称 (Printing weekday name from weekday number)
A switch statement allows checking a variable/value with a list of values (cases) and executing the block associated with that case.
switch语句允许使用值(案例)列表检查变量/值,并执行与该案例关联的块。
Weekday number is the number value from 0 to 6, 0 for "Sunday", 1 for "Monday", 2 for "Tuesday", 3 for "Wednesday", 4 for "Thursday", 5 for "Friday" and 6 for "Saturday". We will input a value between 0 to 6 and check with a switch statement.
工作日数字是从0到6的数字值, “星期日” 为 0 , “星期一” 为1,“星期二” 为2,“星期三” 为3,“星期四” 为4,“星期五” 为 5,“ 6”为数字。星期六” 。 我们将输入一个介于0到6之间的值,并使用switch语句进行检查。
C#代码从给定的工作日编号(0-6)打印工作日名称 (C# code to print weekday name from given weekday number (0-6))
Here, we are asking for an input of the weekday number (from 0 to 6) and print the weekday based on the given input using switch statement.
在这里,我们要求输入星期几(从0到6),并使用switch语句根据给定的输入打印星期几。
// C# program to input weekday number and print the weekday
using System;
using System.IO;
using System.Text;
namespace IncludeHelp
{
class Test
{
// Main Method
static void Main(string[] args)
{
int wday;
//input wday number
Console.Write("Enter weekday number (0-6): ");
wday = Convert.ToInt32(Console.ReadLine());
//validating using switch case
switch (wday)
{
case 0:
Console.WriteLine("It's SUNDAY");
break;
case 1:
Console.WriteLine("It's MONDAY");
break;
case 2:
Console.WriteLine("It's TUESDAY");
break;
case 3:
Console.WriteLine("It's WEDNESDAY");
break;
case 4:
Console.WriteLine("It's THURSDAY");
break;
case 5:
Console.WriteLine("It's FRIDAY");
break;
case 6:
Console.WriteLine("It's SATURDAY");
break;
//if no case value is matched
default:
Console.WriteLine("It's wrong input...");
break;
}
//hit ENTER to exit the program
Console.ReadLine();
}
}
}
Output
输出量
First run:
Enter weekday number (0-6): 0
It's SUNDAY
Second run:
Enter weekday number (0-6): 4
It's THURSDAY
Third run:
Enter weekday number (0-6): 6
It's SATURDAY
Fourth run:
Enter weekday number (0-6): 9
It's wrong input...
翻译自: https://www.includehelp.com/dot-net/input-weekday-number-and-print-the-weekday-example-in-c-sharp.aspx
c#五个自然日 工作日计算