1、1、 开发一个控制台应用程序,使之输出字符串“北京欢迎你!” 。using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace test01class Programstatic void Main(string args)Console.WriteLine(“北京欢迎你!“);1、开发一个控制台应用程序,根据提示从键盘输入圆的半径,随后输出圆的面积和周长。using System;using System.Collections.Generic;using System.L
2、inq;using System.Text;namespace test02class Programstatic void Main(string args)Console.WriteLine(“请输入圆的半径“);string str = Console.ReadLine();double r = Double.Parse(str);double s = Math.PI * r * r;Console.WriteLine(“圆的面积是0:f2“, s);1、 开发一个控制台应用程序,根据提示从键盘获取一个摄氏温度,请转换并输出对应的华氏温度。using System;using Syste
3、m.Collections.Generic;using System.Linq;using System.Text;namespace test03class Programstatic void Main(string args)Console.WriteLine(“请输入摄氏温度:“);float s = float.Parse(Console.ReadLine ();float c = 9 * s / 5 + 32;Console.WriteLine(“输入摄氏温度0转换成的华氏温度1:f2“,s,c);1、开发一个控制台应用程序,根据提示从键盘输入一个字符,判断此字符是数字、大写字母、
4、小写字母还是其它字符。using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace test04class Programstatic void Main(string args)Console.WriteLine(“请输入要判断字符“);int c = Console.Read();if (c = 0 Console.Write(“+1/0 “, i);i+;Console.WriteLine(“=0:f3“,sum);2、编写一个控制台应用程序,从键盘输入两个正整数 m
5、,n,求出两数字的最大公约数和最小公倍数。using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace test05class Programstatic void Main(string args)Console.WriteLine(“请输入第一个正整数“);int m = int.Parse(Console.ReadLine();Console.WriteLine(“请输入第二个正整数“);int n = int.Parse(Console.ReadLine();int
6、 m1 = m;int n1 = n;while (n !=0)int k = m % n;m = n;n = k;Console .WriteLine (“0和1的最大公约数=2,最小公倍数=3“,m1,n1,m,m1*n1/m);3、开发一个窗体应用程序,放置一个文本框和一个命令按钮,通过单击按钮可以在文本框内显示“welcome to china!”4、using System;5、using System.Collections.Generic;6、using System.ComponentModel;7、using System.Data;8、using System.Drawin
7、g;9、using System.Linq;10、using System.Text;11、using System.Windows.Forms;12、namespace test0113、14、 public partial class Form1 : Form15、 16、 public Form1()17、 18、 InitializeComponent();19、 20、 private void button1_Click(object sender, EventArgs e)21、 22、 textBox1.Text =“welcome to china!“;23、 24、 25、
8、3、开发一个窗体应用程序,可以根据圆的半径计算圆的面积和周长。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 test02public partial class Form1 : Formpublic Form1()InitializeComponent();private
9、void button1_Click(object sender, EventArgs e)double r = double.Parse (this.textBox1.Text);this.textBox2.Text = (Math.PI * r * r).ToString(“f3“) ;this.textBox3.Text = (Math.PI * 2 * r).ToString(“f3“) ;3、开发一个窗体应用程序,窗体上能接收华氏温度或者摄氏温度,点击相应按钮可以相互转换,要求转换后的华氏温度或者摄氏温度保留小数点后 3 位。using System;using System.Col
10、lections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace test03public partial class Form1 : Formpublic Form1()InitializeComponent();private void button1_Click(object sender, EventArgs e)double f= doub
11、le.Parse (this.textBox1.Text.Trim ();double c = (f - 32) * 5 / 9;this.textBox2.Text = c.ToString(“f3“);private void button2_Click(object sender, EventArgs e)double c = double.Parse(this.textBox2.Text.Trim();double f = c * 9 / 5 + 32;this.textBox1.Text = f.ToString(“f3“);3、设计一个窗体应用程序,输入一个字符,判定此字符是数字、大写字母、小写字母,还是其它字符。要求:(1)使用类和对象组织算法(2)类中定义公有方法(判断字符归属)(3)在按钮单击事件中使用此类创建实例化对象,并调用对象的方法及返回值完成判断。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 test04