用c#调用两个类随意输入三个数比较大小按顺序输出的代码
asp.net控制台c#编写一段代码,随意输入三个数判断大小并按顺序输出?谢谢各位高手!着急速度谢谢大家帮忙!就是class类用两个class来完成这道题啊谢谢你啊...
asp.net控制台c#编写一段代码,随意输入三个数判断大小并按顺序输出?
谢谢各位高手!着急速度谢谢大家帮忙!
就是class类用两个class来完成这道题啊谢谢你啊 展开
谢谢各位高手!着急速度谢谢大家帮忙!
就是class类用两个class来完成这道题啊谢谢你啊 展开
4个回答
展开全部
楼上的循环不行啊~你试试输入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 + " ");
}
}
}
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 + " ");
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
我这个随便输入几数的,从小到大排.
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();
}
}
}
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();
}
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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 + " ");
}
从大到小输出
话说你说的调用两个类是什么意思?
{
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 + " ");
}
从大到小输出
话说你说的调用两个类是什么意思?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询