C#: Find out the maximum element between the first or last element in a given array of integers
Replace All Elements with Max of First/Last
Write a C# Sharp program to find out the maximum element between the first and last element in a given array of integers ( length 4), replace all elements with the maximum element.
Visual Presentation:

Sample Solution:-
C# Sharp Code:
using System; // Importing the System namespace
using System.Linq; // Importing the System.Linq namespace for LINQ functionalities
namespace exercises // Defining a namespace called 'exercises'
{
class Program // Defining a class named 'Program'
{
static void Main(string[] args) // The entry point of the program
{
// Calling the 'test' method with an integer array as an argument and assigning the result to the 'item' array
int[] item = test(new[] { 10, 20, -30, -40 });
// Outputting text to indicate the start of displaying the new array
Console.Write("New array: ");
// Looping through each element of the 'item' array and displaying them
foreach (var i in item)
{
Console.Write(i.ToString() + " "); // Displaying each element of the 'item' array separated by a space
}
}
// Method to create a new array filled with the maximum value of the given array's elements
public static int[] test(int[] nums)
{
int max = nums.Max(); // Finding the maximum value in the 'nums' array using LINQ's Max() method
// Returning a new array with all elements set to the maximum value found above
return new int[] { max, max, max, max };
}
}
}
Sample Output:
New array: 20 20 20 20
Flowchart:

Go to:
PREV : Rotate Array Left.
NEXT : Middle Elements from Two Arrays.
C# Sharp Code Editor:
Improve this sample solution and post your code through Disqus
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.