1个回答
展开全部
很简单的。,既然学了这专业还是认真看下书吧,免得以后找不到工作。
更多追问追答
追问
主要第二道 第一道做好了 才开始学几个星期
追答
public static int GetMax(int a,int b)
{
int max = 0;
if (max<a)
{
max = a;
}
if (max<b)
{
max = b;
}
return max;
}
static void Main(string[] args)
{
string str1 = Console.ReadLine();
string str2 = Console.ReadLine();
string str3 = Console.ReadLine();
int a = int.Parse(str1);
int b = int.Parse(str2);
int c = int.Parse(str3);
int max = GetMax(a,b);//获取a、b中的最大值
max = GetMax(max,c);//获取max、c中的最大值,最终就是abc3者的最大值了。
Console.WriteLine("最大值是:"+max);
Console.ReadLine();
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询