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 5940679
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T16:00:07+00:00 2026-05-22T16:00:07+00:00

I want to divide the elements of my array for the first element of

  • 0

I want to divide the elements of my array for the first element of the array, the method is working ok, but the last element is not been divided.

I think I had to use <= array.length…, but it obviously gives me an array out of bound exception. How can I achieve this without <=length. PS: the first element should not be dived/taken into consideration as it is the dividend. My code is the following:

public class Ris
{
    public static void main()
    {
        double[] testResult = {2.0, 3.6, 5.0, 2.0};
        for(int element = 0; element < testResult.length; element++){
            if( testResult[element] > testResult[0]){//excludes 1st element
                testResult[element] = testResult[element] / testResult[0] ;// divides elements by first element 0
            }
          System.out.println(testResult[element]); 

        }
    }
}
  • 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-05-22T16:00:07+00:00Added an answer on May 22, 2026 at 4:00 pm

    You’re skiping the first elemnt in a bad manner –

    if( testResult[element] > testResult[0]){
    

    Skips everything that is not more than first element – more then 2.0

    You probably ment to test for

    if( element > 0){
    

    But you can also just skip first element in the definition of for cycle

    for(int element = 1; element < testResult.length; element++){
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to understand why the elements of my first div has not been
I want to divide my array of n elements and copy it into a
Let's say I have a list of elements in an array, but there is
I just want to divide each element in a list by an int. myList
First, let me say I do NOT want a responsive layout. With that settled...
I want to divide each element of a matrix by the sum of the
I want to find the maximum element in an array in O(log N) time
I want to divide a number of type double, by an int. I only
I want to divide my window (wpf) in three columns: left column must be
I want to divide my styles and scripts according to user-agent(mobile , ie ,

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.