public class Program
{
public static void main(String[] args)
{
// Common Format Specifiers:
// %c - Unicode character
// %d - Integer value (byte, short, int, long, bigint)
// %s - String value
// %f - Decimal value (floating point)
// %x - Hextstring value from integer (%X)
char ch = 'z';
int n = 3728;
String s = "java";
float f = 3.14f;
double d = 24891.572;
int hex = 255;
String str_formated = String.format("ch = %c n = %d s = %s %.2f %.3f %x %X", ch, n, s, f, d, hex, hex);
System.out.println(str_formated);
}
}
/*
run:
ch = z n = 3728 s = java 3.14 24891.572 ff FF
*/