0
Need help to solve this
public class Program { public static void main(String[] args) { //declare variables String name = "Howard"; /* declare the age int age = 42; */ //output values //System.out.println(name+" is "+age+" years old."); } }
3 Answers
+ 1
int age = 42 and System.out.println... are in comment and compiler ignore comments. You need remove the comment symbols
0
Rack you So much
0
Let me see the full codes