编写一个程序,对输入的4个整数,求出其中的最大值和最小值,请使用C#编写。。。 5

 我来答
tlgj2007
2010-11-21 · TA获得超过202个赞
知道小有建树答主
回答量:403
采纳率:0%
帮助的人:203万
展开全部
static void Main(string[] args)
{
decimal max1,min2,number3;
Console.WriteLine("Please input 4 number:");
Console.WriteLine("请输入第一个数:");
number3= decimal.Parse(Console.ReadLine());
max1 = min2 = number3;
Console.WriteLine("请输入第二个数:");
number3 = decimal.Parse(Console.ReadLine());
if(number3 > max1 ) max1 = number3;
if(number3 < min2 ) min2 = number3;

Console.WriteLine("请输入第三个数:");
number3= decimal.Parse(Console.ReadLine());
if(number3 > max1 ) max1 = number3;
if(number3 < min2 ) min2 = number3;

Console.WriteLine("请输入第四个数:");
number3 = decimal.Parse(Console.ReadLine());
if(number3 > max1 ) max1 = number3;
if(number3 < min2 ) min2 = number3;

Console.WriteLine("最大值:" + max1.tostring());

Console.WriteLine("最小值:"+ min1.tostring());
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
weiliming001
2010-11-21 · TA获得超过377个赞
知道小有建树答主
回答量:478
采纳率:0%
帮助的人:347万
展开全部
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;

namespace baidu
{
class temp
{
public static void main()
{
array ();

}
public static void array()
{
int[] temp = new int[4];
temp = init(temp);
Console.WriteLine(temp.ToList().Max());
Console.WriteLine(temp.ToList().Min());
show(temp);
}
public static int[] init(int[] temp)
{
Random rm = new Random();
for (int i = 0; i < temp.Length; i++)
{
temp[i] = rm.Next(10000);
}
return temp;
}
public static int[,] init(int[,] temp)
{
Random rm = new Random();
int rank=temp.Rank ;
int line=temp.GetLength (0);
int row=temp.Length / line;

for (int j = 0; j < line; j++)
{
for (int i = 0; i < row ; i++)
{
temp[j, i] = rm.Next(9);
}
}
return temp;

}
public static void show(int[] temp)
{
for (int i = 0; i < temp.Length ; i++)
{
Console.Write(temp[i] + " ");
}
Console.WriteLine();
wline();
}
public static void show(int[,] temp)
{
int rank = temp.Rank;
int line = temp.GetLength(0);
int row = temp.Length / line;

for (int j = 0; j < line; j++)
{
for (int i = 0; i < row; i++)
{
Console.Write(temp[j, i]+" ");
}
Console.WriteLine();
}
wline();
}
public static void wline()
{
Console.WriteLine("-------------------------------------------------------------------");
}
}
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式