码迷,mamicode.com
首页 > Windows程序 > 详细

c#构造函数

时间:2015-09-15 10:43:59      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:

 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; } }

 

c#构造函数

标签:

原文地址:http://www.cnblogs.com/mengluo/p/4809261.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!