Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialMatthew Francis
6,967 PointsNewbie - Syntax of if statements
Odd how this code won't work, any ideas why? it works if I repace the if statement with something like System.out.println(...);
public class HelloWorld{
int numone = 1;
int numtwo = 2;
public void method(){
if(numone == 1 && numtwo ==2){
System.out.println("Yo");
}
if(int numone ==1){
System.out.println("sure");
}
}
public static void main(String []args){
System.out.println("Hello World");
HelloWorld nHello = new HelloWorld();
nHello.method();
}
}
1 Answer
Ethan Weeks
15,352 PointsI think what is happening is that your second if statement has a int inside the condition. Java is looking at that as if you are trying to declare a new variable. Try taking it out.