Answers for "print the maximum and minimum element of array"

3

Java program to find maximum and minimum number without using array

// Java program to find maximum and minimum number without using array
import java.util.Scanner;
public class MaximumMinimumWithoutArray
{
   public static void main(String[] args)
   {
      Scanner sc = new Scanner(System.in);
      System.out.println("Please enter total number: ");
      int numbers = sc.nextInt();
      int maximum = Integer.MIN_VALUE;
      int minimum = Integer.MAX_VALUE;
      System.out.println("Please enter " + numbers + " numbers.");
      for(int a = 0; a < numbers; a++)
      {
         int current = sc.nextInt();
         if(current > maximum)
         {
            maximum = current;
         }
         if(current < minimum)
         {
            minimum = current;
         }
      }
      System.out.println("largest of " + numbers + " numbers is: " + maximum);
      System.out.println("smallest of " + numbers + " numbers is: " + minimum);
      sc.close();
   }
}
Posted by: Guest on February-22-2021
0

find minimum and maximum element in an array

#In python
#List
myListName = ["value", 3, 3.1, "a", True]
minimumValue = min(myListName)
maximumValue = max(myListName)

#Numpy array
import numpy as np
myListName = ["value", 3, 3.1, "a", True]
myArrayName = np.array(myListName)
minimumValue = min(myArrayName)
maximumValue = max(myArrayName)
Posted by: Guest on October-19-2021

Code answers related to "print the maximum and minimum element of array"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language