Help a newbie with the code pls | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
9th Sep 2020, 12:58 PM
spectmind
spectmind - avatar
2 Answers
+ 5
Arthur Babaev Your identation weren't proper and you were missing a '}' . (check your line 7) public class Program { public static void main(String[] args) { boolean rain=false; boolean sun=true; boolean snow=false; if (rain||snow) { System.out.println("Better stay at home"); } else if (sun) { System.out.println("go outside"); } else { System.out.println("night"); } } }
9th Sep 2020, 1:00 PM
Rohit
+ 1
oh my damn inattention. I get it now, thank you a lot!
9th Sep 2020, 1:04 PM
spectmind
spectmind - avatar