Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    /**
     * 
     * @param input
     * @return
     */
    public static String degreesToFour(int input) {
        String four = String.format("%04d", input);
        return four;
    }
}