Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.util.Locale;

public class Main {
    public static void main(String[] args) {
        long value = 123132;
        print(value);
    }

    public static void print(long value) {
        System.out.println(String.format(Locale.US, "$%,.2f", (double) value / 100));
    }
}