└── JAVA code /JAVA code: -------------------------------------------------------------------------------- 1 | import java.util.*; 2 | public class Main 3 | { 4 | public static void main(String[] args) { 5 | Scanner Sc = new Scanner(System.in); 6 | int n = Sc.nextInt(); 7 | System.out.println("Enter numbers : "); 8 | int[] a= new int[n]; 9 | int i,j; 10 | int temp=0; 11 | for(i=0;itemp){ 16 | temp=a[i]; 17 | } 18 | } 19 | System.out.println("Maximum value : " + temp); 20 | } 21 | } 22 | --------------------------------------------------------------------------------