Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8904685
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T02:11:46+00:00 2026-06-15T02:11:46+00:00

I don’t really understand much about arrays, but I need to know how to

  • 0

I don’t really understand much about arrays, but I need to know how to find and print the largest and smallest values of an array. The array is predefined by a read command, and the user will be prompted to enter n amount of integers.

How would I assign the read input to an array and find and display the largest and smallest values of the array?

Is there a way to test the array elements to see if they are all integers?

#!/bin/bash

read -a integers

biggest=${integers[0]}
smallest=${integers[0]}

for i in ${integers[@]}
do
     if [[ $i -gt $biggest ]]
     then
        biggest="$i"
     fi

     if [[ $i -lt $smallest ]]
     then
        smallest="$i"
     fi
done

echo "The largest number is $biggest"
echo "The smallest number is $smallest"
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T02:11:47+00:00Added an answer on June 15, 2026 at 2:11 am

    The general idea is to iterate through the array once and keep track of what the max and min seen so far at each step.

    Some comments and explanations in-line (prefixed by #)

    # This is how to declare / initialize an array:
    arrayName=(1 2 3 4 5 6 7)
    
    # Use choose first element of array as initial values for min/max;
    # (Defensive programming) - this is a language-agnostic 'gotcha' when
    # finding min/max ;)
    max=${arrayName[0]}
    min=${arrayName[0]}
    
    # Loop through all elements in the array
    for i in "${arrayName[@]}"
    do
        # Update max if applicable
        if [[ "$i" -gt "$max" ]]; then
            max="$i"
        fi
    
        # Update min if applicable
        if [[ "$i" -lt "$min" ]]; then
            min="$i"
        fi
    done
    
    # Output results:
    echo "Max is: $max"
    echo "Min is: $min"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know what is the problem but I don't really understand why it is
One thing that really interests me that I don’t see much written about or
I don't really understand when session is created and per what entity it is
I don't really understand why this is happening at all. I'm trying to open
I don't really understand the use and concept of an Intent. I DO understand
I don't really understand Perl, so I was wondering if someone could give me
I don't really understand how modulus division works. I was calculating 27 % 16
I don't really understand how variables work in javax.el: // Implemented by the EL
I am reading SICP now and don't really understand the necessity of lexical addressing
I am new to WCF and I don't really understand the puropose of a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.