vote up -3 vote down star
import java.util.Scanner;

public class SW {

/**
 * @param args
 */
public static void main(String[] args) {
	int length;
	int width;
	int number;
	int perimeter;
	int area;
	Scanner input = new Scanner( System.in ); 
	System.out.println("1. Dimensions of the rectangle");
	System.out.println("2. Perimeter of the rectangle");
	System.out.println("3. Area of the rectangle");
	System.out.println("4. Check if the rectangle is a square");
	System.out.println("Enter the number you want to check");
	number=input.nextInt();
	System.out.println("Enter the length of the rectangle");
	length=input.nextInt();
	System.out.println("Enter the width of the rectangle");
	width=input.nextInt();
	switch (number){
	case 1:
		System.out.println("The dimensions of the rectangle are-");
		System.out.println("Length-"+length);
		System.out.println("Widht-"+width);
		break;
	case 2:
		System.out.println("The perimeter of the rectangle is-"+2*(length+width));
		break;
	case 3:
		System.out.println("The area of the rectangle is-"+length*width);
		break;
	case 4:
		if (length==width);
		System.out.println("The rectangle is a square");
		**else** if(length!=width) {System.out.println("The rectangle is not a square");}
		break;
		}

	// TODO Auto-generated method stub

}

}
flag
The compiler might be able to tell you faster and more accurately than we can. – Rex M Nov 7 at 0:46
1  
well, at least you said please.. – Ryan Emerle Nov 7 at 0:50
This is where using the code formatter built in to your IDE will make this more obvious. – Peter Lawrey Nov 7 at 1:21
wait what where? – thephpdeveloper Nov 7 at 1:46

8 Answers

vote up 10 vote down

You have a stray semicolon terminating your "if":

        case 4:
            if (length==width);   // remove the semicolon and add curly braces
            System.out.println("The rectangle is a square");
            **else** if(length!=width) {System.out.println("The rectangle is not a square");}
            break;
            }
link|flag
vote up 3 vote down

if (length==width);

I think that line is your culprit. Or, more specifically the ";" at the end of it. That's closing out the if statement, which means the else that comes later is dangling.

link|flag
Good point, had overlooked that. But the asterisks around the else look funny too. Not sure if that's SO formatting's engine though. – Wim Hollebrandse Nov 7 at 0:50
vote up 2 vote down

Now that everyone has pointed out the syntax errors, I'd like to suggest that you read Sun's Java Style Guide. Among other things, it recommends that:

  • there should be 1 space before and after any infix operator; e.g. + 2 * (length + width) not +2*(length+width)

  • there should be 1 space before and after the "=" in an assignment; e.g. width = input.nextInt(); not width=input.nextInt();

  • there should NOT be a space around the argument list in a method or constructor invocation; e.g. new Scanner(System.in); not new Scanner( System.in );

  • and so on.

Now some people think that style doesn't matter. But if you are working in a team ... or simply reading someone else's code ... you will find that good (or at least consistent) style is very important in making your code understandable to other people ... and even to yourself at 2am when you are trying to track down some critical bug.

So even if you are just starting out programming you should be learning to get the style right in your code. (And I don't care if you are still at school and your lecturers and TA's don't think teaching good coding style is important. They are WRONG.)

link|flag
Sun's style guidelines aren't the only ones in the world. And you seem to have picked ones that don't matter much (where to insert spaces) rather than ones related to the problem (braces & indentation.) – finnw Nov 7 at 11:14
@finnw - I deliberately created this answer as Community Wiki so that people could expand and correct it. Hint. Hint. – Stephen C Nov 7 at 23:30
vote up 1 vote down

You are using Eclipse. Here the whole source code for your class can be reformatted with Ctrl-A followed by Ctrl-Alt-F.

This will make your semicolon error very clear as the line below is not indented.

link|flag
vote up 0 vote down

Well, you don't say what syntax error you're getting and what line.

The only thing I can see is that your "else" in case 4 is surrounded by double asterisks.

Ah - reading your title again - you may be referring to just that. The "else". Well it's invalid to surround a keyword with double asterisks in Java.

Were you meant to comment it out? If so, use /* else */ .

link|flag
There's also an extra } at the end of the file? – marcc Nov 7 at 0:48
That's the end of the switch. – Wim Hollebrandse Nov 7 at 0:50
Hmm. Kinda realised now that the OP put those there for emphasizing where the problem was. Duh. – Wim Hollebrandse Nov 7 at 0:53
vote up 0 vote down

The semi-colon:

if (length==width);

It should be:

if (length==width)
link|flag
vote up 0 vote down

Because of this:

if (length==width);<------

The semicolon ends the if and then you have a floating else which is indeed invalid syntax.

link|flag
vote up -1 vote down

Others have already pointed out the semicolon which is causing the problem.

if (length==width)
    System.out.println("The rectangle is a square");
else if(length!=width) {
    System.out.println("The rectangle is not a square");}
    break;
}

There's some superfluous code, even once the semicolon is gone. Since length!=width is the opposite of length==width, you can simply use else, thus:

if (length==width)
    System.out.println("The rectangle is a square");
else {
    System.out.println("The rectangle is not a square");}
    break;
}
link|flag
I think the break should be outside the if statement, not part of the else clause. And putting braces around the 'else' part but not the 'then' part is confusing. – finnw Nov 7 at 11:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.