我是靠谱客的博主 凶狠钢笔,最近开发中收集的这篇文章主要介绍编写一个windows程序,完成在一个文本框中输入n个数字,中间用逗号作间隔,然后编程对几个数字排序并输出,完成步骤1-5,并提交包含异常处理功能的程序。,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

编写一个windows程序,完成在一个文本框中输入n个数字,中间用逗号作间隔,然后编程对几个数字排序并输出,完成步骤1-5,并提交包含异常处理功能的程序。
在这里插入图片描述
程序代码

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WindowsFormsApp12
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            string[] sources = txtSource.Text.Split(',');
            int[] a = new int[sources.Length];
            /*for(int i=0;i<sources.Length;i++)
            {
                a[i] = Convert.ToInt32(sources[i]);
            }*/
            try
            {
                for (int i = 0; i < sources.Length; i++)
                {
                    a[i] = Convert.ToInt32(sources[i]);
                }
            }
            catch(Exception ex)
            {
                lblShow.Text = ex.Message+"n";
            }
            for(int i=1;i<=a.Length;i++)
            {
                for (int j=1;j<=a.Length-i;j++)
                {
                    if(a[j-1]>a[j])
                    {
                        int t = a[j - 1];a[j - 1] = a[j];a[j] = t;
                    }
                }
            }
            foreach(int t in a)
            {
                lblShow.Text += string.Format("{0,-4:D}",t);
            }
        }
    }
}

运行结果
在这里插入图片描述
在这里插入图片描述

最后

以上就是凶狠钢笔为你收集整理的编写一个windows程序,完成在一个文本框中输入n个数字,中间用逗号作间隔,然后编程对几个数字排序并输出,完成步骤1-5,并提交包含异常处理功能的程序。的全部内容,希望文章能够帮你解决编写一个windows程序,完成在一个文本框中输入n个数字,中间用逗号作间隔,然后编程对几个数字排序并输出,完成步骤1-5,并提交包含异常处理功能的程序。所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(39)

评论列表共有 0 条评论

立即
投稿
返回
顶部