Wednesday, October 14, 2009

IS203 Лекц 2 - Демо

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 lec2_demo
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }


        private void button1_Click(object sender, EventArgs e)
        {
            int x = 0;
            int y = 0;
            int j = 9;
            Int32 g;
            Int16 h;
            x = 5;
            y = 6;
            int z = 0;
            z = y + x;
            //Бүхэл тоог стринг руу хөрвүүлж байна
            MessageBox.Show(Convert.ToString(z));


        }
    }
}
Ч. Эрдэнэбат

No comments:

Post a Comment