Create a Java program the does the following:
I need a version of the program below that uses the System.out.printf for output.
The value for your name should be coded using proper casing for names. I.E "John Doe". However, it must display in uppercase using a format specifier.
public class SamEx {
public static void main(String[] args) {
String name="Uday";
int year=2030;
int currentYear=2019;
int age=25;
int
res=age+(year-currentYear);
System.out.println(name+" will be
age "+res+" in the year "+year);
}
}

Note : Please comment below if you have concerns. I am here to help you
If you like my answer please rate and help me it is very Imp for me
Create a Java program the does the following: I need a version of the program below that...