c#构造函数

复制代码
 public class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("请输入语文成绩和数学成绩");
            string x = Console.ReadLine();
            int c = x.IndexOf(",");
            if (c > 0)
            {
                int a = Convert.ToInt32(x.Substring(0, c));
                int b = Convert.ToInt32(x.Substring(c + 1));




                grades e = new grades(a, b);
                Console.WriteLine(e.ce());
            }
            else {
                Console.WriteLine("错误");
            }
            Console.ReadKey();
        }
    }
}
复制代码
复制代码
调用类

public
class grades { public int a; public int b; //public bool yun(int a, int b) { // if (a > 90 || b > 90) // { // return true; // } // else { // return false; // } //} public grades(int a,int b) { this.a = a; this.b = b; } public bool ce() { if (this.a > 90 || this.b > 90) { return true; } else { return false; } }
复制代码

 

posted @   尘梦  阅读(162)  评论(0编辑  收藏  举报
编辑推荐:
· 聊一聊 C#前台线程 如何阻塞程序退出
· 几种数据库优化技巧
· 聊一聊坑人的 C# MySql.Data SDK
· 使用 .NET Core 实现一个自定义日志记录器
· [杂谈]如何选择:Session 还是 JWT?
阅读排行:
· 一个.NET开源、易于使用的屏幕录制工具
· 【经验】几种数据库优化技巧
· 字节豆包,来园广告
· Superpower:一个基于 C# 的文本解析工具开源项目
· 反微服务架构(A Macro Services Framework)
点击右上角即可分享
微信分享提示
主题色彩