0

I need help. I can’t fix 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."); } }

25th Dec 2022, 8:21 PM
Alperen
1 Respuesta
0
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."); } }
25th Dec 2022, 8:32 PM
Lwez
Lwez - avatar