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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T21:21:38+00:00 2026-06-03T21:21:38+00:00

I am teaching myself Java and am getting this error when I run code

  • 0

I am teaching myself Java and am getting this error when I run code in my scrap book in Eclipse:

Syntax error, insert "AssignmentOperator Expression" to complete Expression

Here is my scrap book:

Sorter sorter = new Sorter();
int[] nums = {5, 6, 7, 8, 1, 2, 3, 4};
sorter.selectionSort(nums);
nums;

Here is the Sorter class.

public class Sorter {
    public void selectionSort(int[] numbers) {
        for (int i = 0; i < numbers.length - 1; i++) {
            int leastPosition = i;
            for (int j = i + 1; j < numbers.length; j++) {
                if (numbers[j] < numbers[leastPosition])
                    leastPosition = j;
            }
            int temp = numbers[leastPosition];
            numbers[leastPosition] = numbers[i];
            numbers[i] = temp;
        }
    }
}

What is awry? I can’t find a missing assignment operator anywhere.

  • 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-03T21:21:40+00:00Added an answer on June 3, 2026 at 9:21 pm

    The problem, I think, is the last line of your code:

    nums;
    

    This is an expression, but not a statement; hence the complaint. If you want to examine the contents of nums, you can do something like:

    System.out.println(Arrays.toString(nums));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Im teaching myself java and the book i'm looking at just got around to
I'm teaching myself about structures in C, and am having trouble compiling this code:
Here is my code, pretty simple really. Its not homework, I'm teaching myself java
I've been teaching myself Objective-C over the past month or so (I'm a Java
I'm teaching myself Objective-C from a book ( Cocoa programming for mac OS X
i am teaching myself java and i work through the exercises in Thinking in
Im still teaching myself Java so I wanted to try to read a text
I'm extremely new to Java, and have mostly just been teaching myself as I
I have started teaching myself about the Android NDK and I have followed this
I am teaching myself jquery it seems while working on this project. I assumed

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.