Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.text.DecimalFormat;
import java.util.Currency;
import java.util.Locale;

public class Main {
    public static void main(String[] argv) throws Exception {
        DecimalFormat format = new DecimalFormat();
        format.setCurrency(Currency.getInstance(Locale.GERMANY));
        System.out.println(format.getCurrency());

    }
}