一起答
主观

C#程序的入口函数是________()函数。

试题出自试卷《计算机基础与程序设计2017年10月真题试题与答案解析(02275)》
参考答案
查看试卷详情
相关试题
  1. 在Form1窗体中有一个名称为textBox1的文本框,其MultiLine属性值为True,ScrollBars属性值为Both;一个名称为button1的命令按钮,其标题为“显示”。将下列的事件程序补充完整,使得程序运行后,单击“显示”按钮,从文件“d:\test.txt"中将内容读出,显示在textBox1文本框中。

    private void button1. _Click(object sender, EventArgs e)

    {

    String line;

    StreamReader sr = new StreamReader("d:\\test.txt" true);

    while (line_____ ())!=null) //(1)

    textBox1.Text += line + Environment.NewLine;

    sr.____ ; // (2)

    }

  2. 在Form1窗体中有一个名称为label1的标签;一个名称为listboxl1的列表框,其SelectionMode属性值为MultiSimple;一个名称为buttonl,Text 属性值为“计算”的命令按钮。编写适当的事件过程,使得程序运行时,在列表框中选中某些数据项后,如果单击命令按钮,则可以计算所选数据之和,并将计算结果显示在标签iabel1中。程序运行效果如题43图所示。

  3. 有程序段如下:

    private void button1_ Click(object sender, EventAngs e){

    int a,b,t;

    a = Convert.Tolnt32(textBox1.Text);

    b = Convert.ToInt32(textBox2.Text)

    while (a%b != 0)

    {

    t=a% b;

    a=b;

    b=t;

    }

    textBox3.Text = Convert.ToString(b);

    }

    程序运行后,在打开窗口中的文本框textBox1和textBox2中分别输入整数24和40后,单击button1按钮,在文本框textBox3中显示的内容是______。

  4. 有程序段如下:

    private void button1_ Click(object sender, EventArgs e){

    int[,] a= new int[4,4];

    int i,j,s=l;

    for(i=0;i﹤4;it+)

    if(i%2==0)

    for(j=0;j﹤4;j+)

    a[i,j]=s++;

    else

    for(j=3;j﹥=O0;j--)

    a[i,j]=s++;

    s=0;

    for(i=0;i﹤4;i++)

    s=s+a[i,i];

    textBox1.Text = Convert.ToString(s);

    }

    程序运行后,单击窗口中的button1按钮,在文本框textBox1中显示的内容是______。

  5. 在Form1窗体中有一个名称为textBox1的文本框,其MultiLine属性值为True;一个名称为button1的命令按钮,其标题为“Fibonacci数列”。

    将下列的事件程序补充完整,使得程序运行后,单击“Fibonacci数列”按钮,则求出Fibonacci数列的前40项,在文本框中显示出来(每5个数占1行)。Fibonacci数列有如下特点:第1、2两个数都为1,从第3个数开始,每个数等于前2个数之和。

    private void button1 Click(object sender, EventArgs e){

    int a,b,c, i;

    textBox1.Text="l  l ";

    a=l;b= 1;

    For(i=3;        ; i++)    //(1)

    {

        _____//(2)

    textBox1.Text += Convert.ToString(c)+"  ";

    if(i=50)

    textBox1.Text = Environment.NewLine;

    a=b;

        _____ //(3)

    }

    }

  6. 有程序段如下:

    private void button1_ Click(object sender, EventArgs e){

    int a=4,b=2,c=8,t;

    if(a﹤b)

    {}t=a;a=b;b=t;}

    if(a﹤c)

    {}t=a;a=c;c=t;}

    if(b﹤c)

    {t=b;b=c;c=t;}

    textBox1.Text = Convert.ToString(100*a + 10*b+c);

    }

    程序运行后,单击窗口中的button1按钮,在文本框textBox1中显示的内容是______。

  7. 有程序段如下:

    private void button1_Click(object sender, EventArgs e){

    int five, two, cnt= 0;

    for (five= 0; five ﹤= 5; five+t)

    for (two= 0; two ﹤= (10 - five* 5)/2; two++)

    cnt++;

    textBox1.Text = Convert.ToString(cnt);

    }

    程序运行后,单击窗口中的button1按钮,在文本框textBox1中显示的内容是______。

  8. 简述DataSet、DataTable、DataColumnCollection、DataRowCollection 和DataRelation这5个对象间的关系。

  9. 有程序段如下:

    private void button1_ Click(object sender, EventArgs e){

    int a=5, b=9;

    a=a+ b;

    b=a-b;

    a=a-b;

    textBox1.Text = Convert.ToString(10*a+b);

    }

    程序运行后,单击窗口中的button1按钮,在文本框textBox1中显示的内容是______。

  10. 简述大型软件系统测试的4个步骤。