Hàm dạng thủ tục và có trả về giá trị trong C#
namespace BaiHam
{
class Program
{
public static string ten;
public static int tuoi;
static void Main(string[] args)
{
Console.WriteLine(LayTuoi());
Console.ReadLine();
}
public static void NhapNhanVien()
{
Console.WriteLine("ban nhap vao ten la:");
ten = Console.ReadLine();
Console.WriteLine("ban nhap vao tuoi la:");
tuoi = int.Parse(Console.ReadLine());
}
public static int LayTuoi()
{
NhapNhanVien();
return tuoi;
}
}
}
0 comments:
Post a Comment