问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

在4个TextBox中输入4个大小不同的数,将它们从大到小排序后的结果用Msgbox函数输出。

发布网友 发布时间:2022-05-16 20:20

我来回答

4个回答

热心网友 时间:2024-03-01 15:45

Form1.cs内容:

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;
using System.Collections;
namespace WindowsFormsApplication2
{
public partial class Form1 : Form
{
ArrayList al = new ArrayList();

public Form1()
{
InitializeComponent();
}

private void Form1_Load(object sender, EventArgs e)
{

}

private void button1_Click(object sender, EventArgs e)
{
al.Clear();

int a = Convert.ToInt32(textBox1.Text);
int b = Convert.ToInt32(textBox2.Text);
int c = Convert.ToInt32(textBox3.Text);
int d = Convert.ToInt32(textBox4.Text);

al.Add(a);
al.Add(b);
al.Add(c);
al.Add(d);

al.Sort();

label1.Text = al[0] + "," + al[1] + "," + al[2] + "," + al[3];
}
}
}

Form1.Designer.cs 内容:
namespace WindowsFormsApplication2
{
partial class Form1
{
///
/// 必需的设计器变量。
///
private System.ComponentModel.IContainer components = null;

///
/// 清理所有正在使用的资源。
///
/// 如果应释放托管资源,为 true;否则为 false。
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}

#region Windows 窗体设计器生成的代码

///
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
///
private void InitializeComponent()
{
this.button1 = new System.Windows.Forms.Button();
this.textBox1 = new System.Windows.Forms.TextBox();
this.textBox2 = new System.Windows.Forms.TextBox();
this.textBox3 = new System.Windows.Forms.TextBox();
this.textBox4 = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// button1
//
this.button1.Location = new System.Drawing.Point(345, 314);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 0;
this.button1.Text = "button1";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(72, 55);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(100, 21);
this.textBox1.TabIndex = 1;
//
// textBox2
//
this.textBox2.Location = new System.Drawing.Point(72, 94);
this.textBox2.Name = "textBox2";
this.textBox2.Size = new System.Drawing.Size(100, 21);
this.textBox2.TabIndex = 2;
//
// textBox3
//
this.textBox3.Location = new System.Drawing.Point(72, 134);
this.textBox3.Name = "textBox3";
this.textBox3.Size = new System.Drawing.Size(100, 21);
this.textBox3.TabIndex = 3;
//
// textBox4
//
this.textBox4.Location = new System.Drawing.Point(72, 177);
this.textBox4.Name = "textBox4";
this.textBox4.Size = new System.Drawing.Size(100, 21);
this.textBox4.TabIndex = 4;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(72, 242);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(41, 12);
this.label1.TabIndex = 5;
this.label1.Text = "label1";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(797, 546);
this.Controls.Add(this.label1);
this.Controls.Add(this.textBox4);
this.Controls.Add(this.textBox3);
this.Controls.Add(this.textBox2);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.button1);
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
this.PerformLayout();

}

#endregion

private System.Windows.Forms.Button button1;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.TextBox textBox2;
private System.Windows.Forms.TextBox textBox3;
private System.Windows.Forms.TextBox textBox4;
private System.Windows.Forms.Label label1;
}
}

热心网友 时间:2024-03-01 15:46

取数的过程就算了,假设取到的四个数分别赋值给a,b,c,d四个变量,数据类型为double 则有:
sub swap(byref d1 as double,byref d2 as double)'交换数据,如果是vb6,可以去掉这个方法。
dim t as double
t=d1:d1=d2:d2=t
end sub

'简化的冒泡排序
function sort(byval a as double,byval b as double,byval c as double,byval d as double) as string
if a>b then swap a,b
if b>c then swap b,c
if c>d then swap c,d

if a>b then swap a,b
if b>c then swap b,c
if c>d then swap c,d

if a>b then swap a,b
if b>c then swap b,c
if c>d then swap c,d
sort = d &"," & c &"," & b &"," & a
end function

热心网友 时间:2024-03-01 15:46

分都没有~~调用的话onClick="doSort() js写的~~至于html 怎么写 应该会把
function doSort() {
nanExists = false;
var Array1=new Array();
Array1[0]=document.getElementById("s1").value;
Array1[1]=document.getElementById("s2").value;
Array1[2]=document.getElementById("s3").value;
Array1[3]=document.getElementById("s4").value;
for (var i = 0; i < Array1.length; i++) {
Array1[i] = parseInt(Array1[i], 10);
if (isNaN(Array1[i])) {
nanExists = true;
break;
}
}
Array1 = bubbleSort(Array1, 0, Array1.length - 1);
if (nanExists)
alert("请输如数字");
else
alert(resultString(Array1, 0));
}
function resultString(inputArray, num) {
if ((inputArray.length - 1) >= num)
return (inputArray[num] + "," + resultString(inputArray,(num + 1)));
else return "";
}
function bubbleSort(inputArray, start, rest) {
for (var i = rest - 1; i >= start; i--) {
for (var j = start; j <= i; j++) {
if (inputArray[j+1] > inputArray[j]) {
var tempValue = inputArray[j];
inputArray[j] = inputArray[j+1];
inputArray[j+1] = tempValue;
}
}
}
return inputArray;
}

热心网友 时间:2024-03-01 15:47

int main()
{
int i,j,t,a[10];
printf("Please input 10 integers:\n");
for(i=0;i<10;i++)
scanf("%d",&a[i]);
for(i=0;i<9;i++) /* 冒泡法排序 */
for(j=0;j<10-i-1;j++)
if(a[j]>a[j+1])
{t=a[j];/* 交换a[i]和a[j] */
a[j]=a[j+1];
a[j+1]=t;
声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
人类如何才能悬浮在空中? - 知乎 人体悬浮术是真的存在吗 人体怎样才能真正的在空中悬浮 小孩c蛋白反应高是什么原因 (2014?南海区二模)如图所示,物重G为2000N,小红用800N的拉力花2s的时间... 苹果13系列升级iOS15.5好吗? 出生2o12年11月20日2点姓石光字辈取名 求龙凤胎名字:2012年6月21日(农历5月初3)凌晨0点40分出生,大的为龙,小... by和take有什么区别 takeby后面跟交通工具的区别 有没有CS1.6英文版的而且可以下的? CS1.6玩不了 为什么我玩CS1.6僵尸服看不到人? 有没有海尔冰箱压缩机型号为ENB130,220Ⅴ一240v,50Hz,lPH我要买一个?这型号电容_百度问一问 毛石道路由哪几部分组成 安装microsoft visual C++ 运行库会不会很卡? microsoft visual c++2012运行库 是干嘛用的,删了会怎样,安装了又会怎样??? ext panel 服务器系统2008 R2需要装微软C+运行库吗? 安装微软常用运行库会不会对电脑有什么影响 我宝宝女孩,阳历2013年4月28日03点18生,父母是黄姓,生辰八字?谢谢帮起名字 阳历1998年6月29日18时35分出生,虎年,时暴雨,女孩起名字,父母均姓黄 2013-8-24 11:22生的女孩取什么名字好父母都姓黄 2013-8-24 11:22生的女孩取什么名字好父母都姓黄父母姓黄,女儿出生于农历2021年8月_百度问一问 昨天是我的眼睛骗了我这句话的意思是昨天不是而是 这是昨天从河里捉的 请问这是什么龟类?是野生的吗 这是昨天的票不能退的英文 这是昨天在清水寺求的签,麻烦翻译一下大概内容,刚抽完手就扭了 这是我昨天的卦象,看不懂,求好心人解释 这是昨天晚上在宁夏银川天上发生的事情。我昨晚也看见了(我银川人),很是纳闷这是什么。应该是某种天气 请问2v的充电头拿5v的数据线一起充OPPO手机会怎么样? 原装充电器头是1v.都是充电头不见了,可以用2v的充电头吗,看着充电好快,会不会损坏手机啊 谁知道苦咖啡CS站队宣传片歌曲的名字啊? 5V=2A/9V=2V充电头配6A充电线冲不上电? 请问那里有中文cs1.6下载呢? 12promax后壳玻璃碎了影响换新机吗 充电线是5a-2v可以用5a-1v的充电头吗? 苹果12pro max后面是磨砂玻璃上有小白点 风能的利用! 风能使用开始于哪次工业革命 风能与风能利用相关内容 谁了解风力发电中透气毡的作用和使用? 夜色伊甸园网址 谁知道? 伊甸园的骄傲2022卡池顺序 伊甸园美剧论坛 哪里有的看伊甸园之东高清全集(含中字)? 完美伊甸园 wildflower的ins看不了 西门子6ES7288-5CM01-OAAO,接线方式 opentoonz做的GIF压缩包打开是图片