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; } }
【推荐】中国电信天翼云云端翼购节,2核2G云服务器一口价38元/年
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 聊一聊 C#前台线程 如何阻塞程序退出
· 几种数据库优化技巧
· 聊一聊坑人的 C# MySql.Data SDK
· 使用 .NET Core 实现一个自定义日志记录器
· [杂谈]如何选择:Session 还是 JWT?
· 一个.NET开源、易于使用的屏幕录制工具
· 【经验】几种数据库优化技巧
· 字节豆包,来园广告
· Superpower:一个基于 C# 的文本解析工具开源项目
· 反微服务架构(A Macro Services Framework)