Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.util.Locale;

public class Main {
    static String composeDate(int y, int m, int d) {
        return String.format(Locale.US, "%04d.%02d.%02d", y, m + 1, d);
    }
}