public class Program {
public static void main(String[] args) {
String s = "java";
int n = 2384;
float f = 3.14f;
String string = String.format("A String With %s and %2d and %.2f", s, n, f);
System.out.println(string);
}
}
/*
run
A String With java and 2384 and 3.14
*/