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
}
}
|
| |||||||||||
feedback
|
|
You have a stray semicolon terminating your "if":
| |||
|
feedback
|
|
I think that line is your culprit. Or, more specifically the ";" at the end of it. That's closing out the | |||
feedback
|
|
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:
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.) | |||||
feedback
|
|
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. | |||
|
feedback
|
|
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 | |||||||
feedback
|
|
Because of this:
The semicolon ends the if and then you have a floating | |||
|
feedback
|
|
Others have already pointed out the semicolon which is causing the problem.
There's some superfluous code, even once the semicolon is gone. Since
| |||
feedback
|