-
对数字进行排序
现在给大家讲一下实例,即数字排序,首衔这里声明两个变量
int x;
int temp;
分别用于存储数字,和临时存储序列,接下来在控制提示询问要排序几个数,首先给变量x赋值为你输入的值,接下来声明一个数组,将x作为数组的长度,即这个数组里会有几个元素
Console.WriteLine ("你想排几个数的序:");
x=int.Parse (Console.ReadLine ());
int[] array_previous=new int [x];
通过for循环将遍历这个数组中的所有元素
for(int i=0;i<array_previous.Length;i++)
{
Console.WriteLine ("请输入第{0}个数:",i+1);
array_previous[i]=int.Parse (Console.ReadLine ());
}
在每一个元素中,存储一个,你在控制台上输入的数 接下来,辨别相临两个数的大小,进行排序接下将较大的存入到temp中 最后将temp中的结里存到后一个元素内,其目的是将改变数组元素的顺序,以便达到排序的目的。最后输出结果
using System;
public class Test
{
public static void Main()
{
int x;
int temp;
Console.WriteLine ("你想排几个数的序:");
x=int.Parse (Console.ReadLine ());
int[] array_previous=new int [x];
for(int i=0;i<array_previous.Length;i++)
{
Console.WriteLine ("请输入第{0}个数:",i+1);
array_previous[i]=int.Parse (Console.ReadLine ());
}
for(int index=1;index<array_previous.Length;index++)
{
if(array_previous[index-1]<array_previous[index])
{
temp=array_previous[index-1];
array_previous[index-1]=array_previous [index];
array_previous[index]=temp;
}
}
Console.WriteLine ("正序排列为:");
foreach(int pin in array_previous)
{
Console.Write (pin+"\t");
}
Console.WriteLine ();
for(int index=1;index<array_previous.Length;index++)
{
if(array_previous[index-1]>array_previous [index])
{
temp=array_previous[index-1];
array_previous[index-1]=array_previous[index];
array_previous[index]=temp;
}
}
Console.WriteLine ("反序排列为:");
foreach(int pin in array_previous)
{
Console.Write (pin+"\t");
}
Console.WriteLine ();
}
}
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式