2022年程序设计复习题 2.pdf
《2022年程序设计复习题 2.pdf》由会员分享,可在线阅读,更多相关《2022年程序设计复习题 2.pdf(4页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、程序设计题一1请根据要求完成程序:(1)在文本框 (textBox1) 中输入姓名 * 后,单击“确定”(Button1) 按钮可以在标签(label2)中显示“你好, * ” ;并将相应标签的文字变成红色。(2)单击“清除”(Button2) 按钮时可以清除文本框中的内容。privatevoid button1_Click(object sender, EventArgs e) /确定 label2.Text = 你好 , + textBox1.Text; label2.ForeColor = Color .Red; privatevoid button2_Click(object send
2、er, EventArgs e) /取消 textBox1.Text = null ; 2在窗体上有文本框TextBox1(见图),要求程序运行时,在textBox1 中输入一个分数后按回车键,则判断分数的合法性,若分数不在0-100 之间,弹出对话框显示“分数不符合实际情况”。int score; score = Convert .ToInt32(textBox1.Text); if (score 100 | score 0) MessageBox.Show(分数不符合情况 );3输入下面的程序,记录运行结果int y=0,x=6; for(int j=1;j7;j+) if ( x % j
3、 = = 0) y=y+j; Console.WriteLine(y); 执行程序后的结果为:12 4编写根据字符串变量name 的值执行不同操作的switch 语句。如果该变量的值为Robert,则打印消息“ Hi ,Bob” ;如果为Richard,则打印消息“Hi,Rich” ;如果为Barbara,则打印消息“Hi,Barb” ;如果为Kalee,则打印消息“ You Go Girl ! ” ;对于其他情况,则打印“Hi,x” ,其中 x 为字符串变量name的值。staticvoid Main( string args) int a ; string name = Console.R
4、eadLine(); if (name = Robert ) a = 1; else ; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 1 页,共 4 页 - - - - - - - - - if (name = Richard) a = 2; else if (name = Barbara) a = 3; else if (name = Kalee ) a = 4; else a = 5; switch (a) case 1: Console.WriteLine(Hi,Bob )
5、; break ; case 2: Console .WriteLine(Hi,Rich); break ; case 3: Console.WriteLine(Hi,Barb); break ; case 4: Console .WriteLine(You Go Girl!); break; case 5: Console .WriteLine(Hi,0, name); break; Console.ReadLine(); 5定义一个时钟类,该类的字段包括时、分、秒;设置适当的属性;创建一个时钟对象,为该对象的成员赋值,并输出成员的值。private void button1_Click(o
6、bject sender, EventArgs e) time t = new time(10, 20, 30); label1.Text = 现在时间: +t.H.ToString ()+:+t.M.ToString ()+:+t.S .ToString (); public class time private int h; public int H get return h; set h = value; private int m; public int M get return m; set m = value; private int s; public int S get ret
7、urn s; set s = value; public time(int a, int b, int c) h = a; m = b; s = c; 程序设计题二1、输入某军校打靶射击成绩后,给出四级评分。评分标准如下:优秀90=环数 =100 良好75=环数 90 合格60=环数 75 不及格0=环数 100 | i =90 & i =75 & i 90) Console .WriteLine( 合格 ); else Console .WriteLine( 不及格 ); Console .ReadLine();2用循环语句编写代码,能够输出1 到 10 这十个整数以及它们的和。int i=
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 2022年程序设计复习题 2022 程序设计 复习题
限制150内