用c#调用两个类随意输入三个数比较大小按顺序输出的代码

asp.net控制台c#编写一段代码,随意输入三个数判断大小并按顺序输出?谢谢各位高手!着急速度谢谢大家帮忙!就是class类用两个class来完成这道题啊谢谢你啊... asp.net控制台c#编写一段代码,随意输入三个数判断大小并按顺序输出?
谢谢各位高手!着急速度谢谢大家帮忙!
就是class类用两个class来完成这道题啊谢谢你啊
展开
 我来答
snake8313
2009-03-28 · TA获得超过114个赞
知道答主
回答量:72
采纳率:0%
帮助的人:51.6万
展开全部
楼上的循环不行啊~你试试输入3,2,1~起码双循环的~~~我这个是从小到大输出

using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int[] a = new int[3];
for (int i = 0; i < a.Length; i++)
a[i] = Int32.Parse(Console.ReadLine());
Array.Sort(a);
foreach (int t in a)
Console.Write(t + " ");
}
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友af884f6
推荐于2016-03-09 · 超过19用户采纳过TA的回答
知道答主
回答量:90
采纳率:0%
帮助的人:58.7万
展开全部
我这个随便输入几数的,从小到大排.
using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication29
{
class Program
{
static void Main(string[] args)
{
Console.Write("输入数:");
string[] s = Console.ReadLine().Split();
int len = s.Length;
int[] Int = new int[len];
for (int i = 0; i < s.Length; i++)
{
Int[i] = Convert.ToInt32(s[i]);
}
Array.Sort(Int);
foreach (int t in Int)
{
Console.Write(t + " ");
}
Console.ReadLine();
}
}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
定复2d
2009-03-26 · TA获得超过3196个赞
知道大有可为答主
回答量:2052
采纳率:0%
帮助的人:1928万
展开全部
static void Main(string[] args)
{
int[] a = new int[3];
for (int i = 0; i < a.Length; i++)
a[i] = Int32.Parse(Console.ReadLine());
for (int i = 0; i < a.Length - 1; i++)
{
if (a[i] < a[i + 1])
{
int temp = a[i];
a[i] = a[i + 1];
a[i + 1] = temp;
}
}
foreach (int t in a)
Console.Write(t + " ");
}
从大到小输出
话说你说的调用两个类是什么意思?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
623711566
2009-03-26 · TA获得超过289个赞
知道答主
回答量:154
采纳率:0%
帮助的人:0
展开全部
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式