Skip to content

Instantly share code, notes, and snippets.

@Nikolay995
Last active March 30, 2018 15:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nikolay995/e3d7732afe876cdc28ed84ee71aa11ef to your computer and use it in GitHub Desktop.
Save Nikolay995/e3d7732afe876cdc28ed84ee71aa11ef to your computer and use it in GitHub Desktop.
Java Printf Example
public class PrintfExample {
public static void main(String[] args) {
int a = 5;
String b = "five";
System.out.printf("A equals %d, and B equals %s", a , b);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment