0
Pls why do we have to leave line 5 in this code.
public class Program { public static void main(String[] args) { int age = 22; int money = 800; if (age > 18 && money > 500) { System.out.println("Welcome!"); } } }
2 Answers
+ 1
easy to read. beauty only
+ 1
ease of flow when reading and understanding your code, best to actually put comments between these lines