Answers for "find minimum maximum values"

2

Find minimum and maximum values in a java array

// Find minimum and maximum values in a java array
public class MaxMinValueInArray
{
   public static void main(String[] args) 
   {
      int[] arrNumber = new int[]{50, 150, 250, 500, 160, 530};
      int maximum = maxNumber(arrNumber);
      System.out.println("Maximum value : " + maximum);
      // calling min function java
      int minimum = minNumber(arrNumber);
      System.out.println("Minimum value : " + minimum);
   }
   // java find max in array
   public static int maxNumber(int[] arr)
   {
      int maximumValue = arr[0];
      for(int a = 1; a < arr.length; a++)
      {
         if(arr[a] > maximumValue)
         {
            maximumValue = arr[a];
         }
      }
      return maximumValue;
   }
   // java min of array
   public static int minNumber(int[] arr)
   {
      int minimumValue = arr[0];
      // find minimum value in array java
      for(int a = 1; a < arr.length; a++)
      {
         if(arr[a] < minimumValue)
         {
            minimumValue = arr[a];
         }
      }
      return minimumValue;
   }
}
Posted by: Guest on February-09-2021
0

minimum and maximum numbers for various integer types

fn main() {
    println!("The smallest i8 is {} and the biggest i8 is {}.", std::i8::MIN, std::i8::MAX); // hint: printing std::i8::MIN means "print MIN inside of the i8 section in the standard library"
    println!("The smallest u8 is {} and the biggest u8 is {}.", std::u8::MIN, std::u8::MAX);
    println!("The smallest i16 is {} and the biggest i16 is {}.", std::i16::MIN, std::i16::MAX);
    println!("The smallest u16 is {} and the biggest u16 is {}.", std::u16::MIN, std::u16::MAX);
    println!("The smallest i32 is {} and the biggest i32 is {}.", std::i32::MIN, std::i32::MAX);
    println!("The smallest u32 is {} and the biggest u32 is {}.", std::u32::MIN, std::u32::MAX);
    println!("The smallest i64 is {} and the biggest i64 is {}.", std::i64::MIN, std::i64::MAX);
    println!("The smallest u64 is {} and the biggest u64 is {}.", std::u64::MIN, std::u64::MAX);
    println!("The smallest i128 is {} and the biggest i128 is {}.", std::i128::MIN, std::i128::MAX);
    println!("The smallest u128 is {} and the biggest u128 is {}.", std::u128::MIN, std::u128::MAX);
}
Posted by: Guest on June-12-2021

Code answers related to "find minimum maximum values"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language