C#源代码—在windows窗体中添加一个名为lblShow的Lable控件3

在windows窗体中添加一个名为lblShow的Lable控件
然后在源代码视图中编辑如下代码

using System;
using System.Windows.Forms;
namespace TestVariable
{
    public partial class TestOperator : Form
    {
        private void TestVariable_Load(object sender, EventArgs e)
        {
            int a, b = 5;
            char c1 = 'A';
            a = c1;                    //字符型转整型
            float x = 3;
            x += b;                     //整型转浮点型
            lblShow.Text = "a=" + a;    //整型转为字符串
            lblShow.Text += "\nx=" + x; //浮点型转为字符串
         }
    }
}


该程序运行结果为:
a=65
X=8


2.在windows窗体中添加一个名为lblShow的Lable控件
然后在源代码视图中编辑如下代码

using System;
using System.Windows.Forms;
namespace TestVariable
{
    public partial class TestOperator : Form
    {
        private void TestVariable_Load(object sender, EventArgs e)
        {
            int i = 25, j = 12;
            bool k;
            string result = " i!=j的值为" + (i != j);
            result += "\n i!=j && i>=j的值为" + (i != j && i >= j);
            result += "\n i!=j && i>=j+20的值为" +(i != j && i >= j + 20);
            result += "\n k = i!=j && i>=j的值为" + (k=i != j && i >= j);
            lblShow.Text = result;
        }
    }


}
程序运行结果为:
i!=j的值为True
i!=j && i>=j的值为True
i!=j && i>=j+20的值为False
k = i!=j && i>=j的值为True

你可能感兴趣的:(C#)