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 {
    public static String formatAmount(double value) {
        return String.format(Locale.getDefault(), "%.2f", value);
    }
}