c#题解 | #赢的次数#

大家一起加油啊!题解代码附下

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
public class Program {
    public static void Main() {
        
            //设置变量保存分数
            int score;
            //异常捕获,排除错误字符
         a: try
            {
                 score = Convert.ToInt32(Console.ReadLine());
            }
            catch (Exception)
            {
                //输入不合法字符时,跳回重新输入
                goto a;
            }

            //判断的分数的奇偶
            if (score % 2 == 0)
            {
                //基数时
                Console.WriteLine((int)score / 2);
            }
            else
            {
                //偶数时
                Console.WriteLine((int)score / 2 + " " + ((int)score / 2 + 1));
            }
   }
}

alt alt

全部评论
有帮助谢谢
1 回复 分享
发布于 2022-03-28 15:29

相关推荐

10-15 16:27
门头沟学院 C++
LeoMoon:建议问一下是不是你给他付钱😅😅
点赞 评论 收藏
分享
10-06 12:46
门头沟学院 Java
跨考小白:定时任务启动
点赞 评论 收藏
分享
评论
12
1
分享
牛客网
牛客企业服务