题解 | #牛牛的空格分隔#

牛牛的空格分隔

https://www.nowcoder.com/practice/b2203c4a5c304536a7f577bc885de511

包含了对异常产生的检测和原因说明

using System;
public class Program {
    public static void Main() {
        String[] s = new String[3];
        int i = 0;

        // 读取三个字符串
        while (i < 3)
        {
            s[i] = Console.ReadLine();
            i++;
        }

        // 检查第三个字符串是否为 null
        if (s[2] == null)
        {
            Console.WriteLine("Third string is null.");
        }
        else
        {
            try
            {
                double number = double.Parse(s[2]);
                Console.WriteLine("{0} {1} {2:0.000000}", s[0], s[1], number);
            }
            catch (FormatException ex)
            {
                Console.WriteLine("Format exception: " + ex.Message);
            }
            catch (OverflowException ex)
            {
                Console.WriteLine("Overflow exception: " + ex.Message);
            }
        }
    }
}

全部评论

相关推荐

我是小红是我:学校换成中南
点赞 评论 收藏
分享
邮小鼠:粤嵌的项目水的要死 来我们学校带过课程实习 项目名字是车机终端 实际上就是写了了个gui 还是老师把代码发给你你改改的那种
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务