任意の長さ配列の最大値(整数タイプ)を求めます.paramsパラメータを用いて任意の長さの変化を実現した.
2992 ワード
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace __ ___ _
{
class Program
{
public static int Getmax( params int[]arr)
{
int max = arr[0];
for (int i = 0; i < arr.Length; i++)
{
if (arr[i] > arr[0])
{
max = arr[i];
}
else
{
max = arr[0];
}
}
return max;
}
static void Main(string[] args)
{
int[] arr = { 1,2,3,4,5,6};
int max = Getmax(1,2,3);// params 。
Console.WriteLine(max);
Console.ReadLine();
}
}
}