C#.net 输入a,b,c三个不同的数,将它们按由小到大的顺序输出。 20

usingSystem;usingSystem.Collections.Generic;usingSystem.Text;namespace_{classProgram{... using System;
using System.Collections.Generic;
using System.Text;

namespace _
{
class Program
{
static int num(int a, int b, int c)
{
int t;
if (a > b)
{
t = a;
a = b;
b = t;
}
if (a > c)
{
t = c;
c = a;
a = t;
}
if (b > c)
{
t = b;
b = c;
c = t;
}

}
static void Main(string[] args)
{
int x, y, z;
Console.Write("请输入第一个数:");
x = int.Parse(Console.ReadLine());
Console.Write("请输入第二个数:");
y = int.Parse(Console.ReadLine());
Console.Write("请输入第三个数:");
z = int.Parse(Console.ReadLine());
int v = num(x, y, z);
Console.WriteLine("三个数由小到大的顺序为:{0}", v);
}
}
}

请问函数的返回值应该输什么。。。。。。
展开
 我来答
amao0510
2010-03-13 · TA获得超过453个赞
知道小有建树答主
回答量:246
采纳率:0%
帮助的人:211万
展开全部
建议num()方法 返回数组。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
阚露陶饮
2019-04-24 · TA获得超过1101个赞
知道小有建树答主
回答量:1513
采纳率:100%
帮助的人:6.9万
展开全部
这个方法应该这样写
private
static
void
num(int
a,
int
b,
int
c)
{
int
t;
if
(a
>
b)
{
t
=
a;
a
=
b;
b
=
t;
}
if
(a
>
c)
{
t
=
c;
c
=
a;
a
=
t;
}
if
(b
>
c)
{
t
=
b;
b
=
c;
c
=
t;
}
调用的时候应该要这样:
num(ref
x,ref
y,ref
z)
Console.WriteLine("三个数由小到大的顺序为:{0},{1},{2}",
x,y,z);
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式