Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.zetcode.main;
- public class Zetcode
- {
- public static void main(String args[])
- {
- int age = 16;
- String name = "Sammy";
- String output = String.format("%s is %d years old.", name, age);
- System.out.println(output);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment