为了账号安全,请及时绑定邮箱和手机立即绑定

为什么我运行出错

这是代码

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication9
{
    class Program
    {
        static void Main(string[] args)
        {
            string name;
            Console.Write("请输入您的姓名:");
            name = Console.ReadLine();
            Console.WriteLine("你好,{0]!",name);
        }
    }
}



输入名字回车后的结果

未经处理的异常:  System.FormatException: 输入字符串的格式不正确。
   在 System.Text.StringBuilder.AppendFormatHelper(IFormatProvider provider, String format, ParamsArray args)
   在 System.String.FormatHelper(IFormatProvider provider, String format, ParamsArray args)
   在 System.IO.TextWriter.WriteLine(String format, Object arg0)
   在 System.IO.TextWriter.SyncTextWriter.WriteLine(String format, Object arg0)
   在 System.Console.WriteLine(String format, Object arg0)
   在 ConsoleApplication9.Program.Main(String[] args) 位置 e:\新建文件夹\代码\ConsoleApplication9\ConsoleApplication9\Program.cs:行号 16


正在回答

1 回答

 Console.WriteLine("你好,{0]!",name);应该为    Console.WriteLine("你好,{0}!",name)

0 回复 有任何疑惑可以回复我~
#1

Windseek 提问者

非常感谢!
2018-07-22 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么我运行出错

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信