1.题目要求如下:
C#修改上题实验任务,将输入n个数字,通过for语句排序并输出,注意不得使用Array.Sort()的方法排序
2.来吧,展示:
using System; using System.Windows.Forms; namespace n.sort { public partial class Form1 : Form { public Form1() { InitializeComponent(); } Double[] a = new Double[100]; int num = 0; int n; private void Form1_Load(object sender, EventArgs e) { MessageBox.Show("欢迎使用n个数排序器!"); label3.Text = "排序前的序列:"; } private void button1_Click(object sender, EventArgs e) { try { if(num<n) { a[num] = Convert.ToDouble(textBox2.Text); label3.Text += a[num] + " "; num++; textBox2.Text = ""; } } catch { MessageBox.Show("请输入正确的数字!"); } } private void button2_Click(object sender, EventArgs e) { label3.Text += "\n排序后的序列:"; double t = 0; for(int i=0;i<num-1;i++) { for(int j=i+1;j<num;j++) { if(a[j]<a[i]) { t = a[j]; a[j] = a[i]; a[i] = t; } } } for(int k=0;k<num;k++) { label3.Text += a[k] + " "; } } private void textBox1_TextChanged(object sender, EventArgs e) { n = Convert.ToInt32(textBox1.Text); } private void button3_Click(object sender, EventArgs e) { textBox1.Text = string.Empty; textBox2.Text = string.Empty; label3.Text = string.Empty; } private void label3_Click(object sender, EventArgs e) { } } }
3.运行结果如下:
4.同样也有清零功能,不做演示了
希望能帮到大家,问你们要一个赞,你们会给吗,谢谢大家
版权声明:本文版权归作者(@攻城狮小关)和CSDN共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
大家写文都不容易,请尊重劳动成果~
交流加Q:1909561302
博客园地址https://www.cnblogs.com/guanguan-com/