Results 21 to 27 of 27
Thread: Java Program
- 10-06-2008, 04:45 AM #21
Member
- Join Date
- Oct 2008
- Posts
- 36
- Rep Power
- 0
Error on java dont know what i did wrong
it said error on else without if
int largest; // Largest of the three values.
int smallest; // Smallest of the three values.
int x;
int y;
int z;
//Write assignment, if, or if else statements here as appropriate.
if (x>y)
largest=x;
smallest=y;
else
largest=y;
smallest=x;
if (largest<z)
largest=z;
if (smallest>z)
smallest=z;
thats how it look whats wrong?
- 10-06-2008, 09:06 AM #22
What's wrong is that you posted your code without using the code tags, and that you didn't use braces { } to surround the if / else blocks.
db
- 10-06-2008, 12:39 PM #23
int largest; // Largest of the three values.
int smallest; // Smallest of the three values.
int x;
int y;
int z;
//Write assignment, if, or if else statements here as appropriate.
if (x>y){
largest=x;
smallest=y;
}
else
{largest=y;
smallest=x;
}
if (largest<z)
{
largest=z;
}
if (smallest>z)
{
smallest=z;
}
Always use braces for enclosing the block of code .{}
- 10-10-2008, 06:26 PM #24
Member
- Join Date
- Oct 2008
- Posts
- 36
- Rep Power
- 0
- 10-10-2008, 07:19 PM #25
I'd recommend NOT putting code on the same line as the {{largest=y;
When you go to add code often it will between the { and the first line of code.
And a standing alone { is easier to see than one next to a statement
- 10-10-2008, 09:08 PM #26
What Norm said, plus a whole lot more valuable stuff:
Code Conventions for the Java(TM) Programming Language: Contents
db
- 10-12-2008, 12:24 AM #27
Member
- Join Date
- Oct 2008
- Posts
- 36
- Rep Power
- 0
Similar Threads
-
How to execute an External Program through Java program
By Java Tip in forum java.ioReplies: 0Last Post: 04-04-2008, 02:40 PM -
New to Java Program
By jvasilj1 in forum New To JavaReplies: 1Last Post: 02-05-2008, 07:22 AM -
How to execute an External Program through Java program
By JavaBean in forum Java TipReplies: 0Last Post: 10-04-2007, 09:33 PM -
help with java program
By mattvgt in forum New To JavaReplies: 3Last Post: 07-14-2007, 04:57 PM -
java program
By nehasahu in forum New To JavaReplies: 5Last Post: 07-12-2007, 11:05 AM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks