0
String formating
Is there any way to format output like C++ and C# in a simple way?
1 Antwort
+ 1
String x = "C++", y = "C#";
System.out.printf("Is there a way to format output like %s and %s in a simple way?", x, y);
Output: Is there a way to format output like C++ and C# in a simple way?