728x90 AdSpace

Latest News
Friday, May 18, 2018

Xây Dựng Lớp - Đối Tượng C# - Bài 1:Xây dựng class sinh viên (có Constructor)

Đề : 
a, Xây dựng một class sinh viên như sau:



b, sử dụng lớp SinhVien để thiết kế theo mẫu giao diện sau:


Code Xử Lý:

Xây dựng form:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace sinhvien8
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void sosanh_Click(object sender, EventArgs e)
        {
            string hosv1 = ho1.Text;
            string tensv1 = ten1.Text;
            double dtb1 = Convert.ToInt32(d1.Text);
            string hosv2 = ho2.Text;
            string tensv2 = ten2.Text;
            double dtb2 = Convert.ToInt32(d2.Text);
            sinhvien8 a = new sinhvien8(hosv1, tensv1, dtb1);
            sinhvien8 b = new sinhvien8(hosv2, tensv2, dtb2);
            xl1.Text = a.xeploai().ToString();
            xl2.Text = b.xeploai().ToString();


        }

        private void button1_Click(object sender, EventArgs e)
        {

            if (ho1.Text == "")
            {
                MessageBox.Show("bạn chưa nhập họ sv1", "chú ý", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            }
            else if (ten1.Text == "")
            {
                MessageBox.Show("bạn chưa nhập tên sv1", "chú ý", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            }
            else if (d1.Text == "")
            {
                MessageBox.Show("bạn chưa nhập điểm TB sv1", "chú ý", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            }
            else if (ho2.Text == "")
            {
                MessageBox.Show("bạn chưa nhập họ sv2", "chú ý", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            }
            else if (ten2.Text == "")
            {
                MessageBox.Show("bạn chưa nhập tên sv2", "chú ý", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            }
            else if (d2.Text == "")
            {
                MessageBox.Show("bạn chưa nhập điểm TB sv2", "chú ý", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            }
            else
            {


                string hosv1 = ho1.Text;
                string tensv1 = ten1.Text;
                double dtb1 = Convert.ToInt32(d1.Text);
                string hosv2 = ho2.Text;
                string tensv2 = ten2.Text;
                double dtb2 = Convert.ToInt32(d2.Text);
                sinhvien8 a = new sinhvien8(hosv1, tensv1, dtb1);
                sinhvien8 b = new sinhvien8(hosv2, tensv2, dtb2);
                xl1.Text = a.xeploai().ToString();
                xl2.Text = b.xeploai().ToString();
                if (a.sosanh(b) == true)
                    ketqua.Text = "điểm sinh viên 1 lớn hơn điểm sinh viên 2";
                else
                    ketqua.Text = "điểm sinh viên 2 lớn hơn điểm sinh viên 1";
            }
        }

        private void button3_Click(object sender, EventArgs e)
        {
            this.Close();
        }

     
    }
}


Xây Dựng Class:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace sinhvien8
{
    class sinhvien8
    {
        private string ho;
        private string ten;
        private double dtb;
        public sinhvien8()
        {
            ho = "";
            ten="";
            dtb=0;
        }
        public sinhvien8(string hosv, string tensv, double diem)
        {
            ho = hosv;
            ten = tensv;
            dtb = diem;

        }
        public string xeploai()
        {
            string x = "";
            if (dtb >= 8)
                x = "giỏi";
            else if (dtb >= 7)
                x = "khá";
            else if (dtb >= 5)
                x = "trung bình";
            else
                x = "yếu";
            return x;

        }
        public bool sosanh(sinhvien8 sv)
        {
            bool ss = true;
            if (this.dtb < sv.dtb)
                ss = false;
            return ss;
        }
    }
}

  • Blogger Comments
  • Facebook Comments

0 comments:

Post a Comment

Item Reviewed: Xây Dựng Lớp - Đối Tượng C# - Bài 1:Xây dựng class sinh viên (có Constructor) Rating: 5 Reviewed By: Genm