create a java program will concatenate the basic information of the students given the default variables name
public class Main{
public static void main(String[] args){
String name = "Tom";
int age = 20;
System.out.println(name + " " + age);
}
}
Comments
Leave a comment