visual studio 2010控制台为什么显示不了中文,只可以显示英文和数字?using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;namespace T4
{
    class Program
    {
        static void Main(string[] args)
        {
            int s;
            Console.WriteLine("www请输入您的成绩:");
            s = int.Parse(Console.ReadLine());
            if (s >= 90 && s <= 100)
            {
                Console.WriteLine("优秀youxiu");
            }
            else if (s >= 80 && s < 90)
            {
                Console.WriteLine("良好");
            }
            else if (s >= 60 && s < 80)
            {
                Console.WriteLine("及格");
            }
            else
            {
                Console.WriteLine("不及格");
            }
            Console.ReadLine();
        }
    }
}