Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
763 B
1
Indexable
Never
import java.util.Scanner;

public class MaximumValueCalculation {
    public static void main(String[] args) {
        Scanner input = new Scanner(System.in);

        // Input the value of N
        System.out.print("Enter the value of N: ");
        int N = input.nextInt();

        // Input the elements in the array E
        int[] E = new int[N];
        System.out.println("Enter the elements in the array E (one per line): ");
        for (int i = 0; i < N; i++) {
            E[i] = input.nextInt();
        }

        // Calculate the maximum value using the given formula
        int result = E[5] - E[3] + E[2] - E[0];

        // Output the maximum value
        System.out.println("The maximum value is: " + result);

        input.close();
    }
}