namespace _006_變量的聲明和賦值 {
? ? class Program {
? ? ? ? static void Main(string[] args) {
? ? ? ? ? ? int age;
? ? ? ? ? ? age = 25;
? ? ? ? ? ? int age = 25;
? ? ? ? ? ? age = 45;
? ? ? ? ? ? int hp, mp=90, exp=99;
? ? ? ? ? ? hp = 100;
? ? ? ? ? ? Console.WriteLine(hp);
? ? ? ? }
? ? }
}