C#函数的方法定义和方法调用小议

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text; namespace ConsoleApplication1
{
class Program
{
//定义方法一
public static void PrintInfo()
{
Console.WriteLine("Hello World! \n I'm Coming!");
}
//定义方法二
public static void Check(int imput_date)
{
/*
int imput_date;
Console.WriteLine("Please input date:");
imput_date = Console.Read();
*/
switch (imput_date)
{
case :
Console.WriteLine("今天是星期1");
break;
case :
Console.WriteLine("今天是星期2");
break;
case :
Console.WriteLine("今天是星期3");
break;
case :
Console.WriteLine("今天是星期4");
break;
case :
Console.WriteLine("今天是星期5");
break;
case :
Console.WriteLine("今天是星期6");
break;
case :
Console.WriteLine("今天是星期7");
break;
default:
Console.WriteLine("请输入正确的日期!");
break; }
}
static void Main(string[] args)
{
//使用方法:
PrintInfo();
Check();
Check();
Check();
Check();
Check();
Console.Read();
}
}
}

运行结果如下:
C#函数的方法定义和方法调用小议

上一篇:mysql 远程访问不行解决方法 Host is not allowed to connect to this MySQL server


下一篇:MySql数据库乱码解决方法