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);
}
}
}
请问函数的返回值应该输什么。。。。。。 展开
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);
}
}
}
请问函数的返回值应该输什么。。。。。。 展开
7个回答
展开全部
建议num()方法 返回数组。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个方法应该这样写
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);
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);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询