You are viewing a single comment's thread. Return to all comments →
public class Solution {
public static void main(String[] args) { Scanner scanner = new Scanner(System.in); double payment = scanner.nextDouble(); scanner.close(); // Write your code here. // us: u // India: i // China: c // France: f /* Configuraciones regionales getInstance: solo la cantidad getCurrencyInstance: te da el simbolo de la moneda tambien */ Locale usLocale = new Locale("en", "US"); Locale indiLocale = new Locale("en", "IN"); Locale chiLocale = new Locale("zh", "CN"); Locale frLocale = new Locale("fr", "FR"); NumberFormat usFormat = NumberFormat.getCurrencyInstance(usLocale); NumberFormat indiFormat = NumberFormat.getCurrencyInstance(indiLocale); NumberFormat chiFormat = NumberFormat.getCurrencyInstance(chiLocale); NumberFormat frFormat = NumberFormat.getCurrencyInstance(frLocale); String us = usFormat.format(payment); String india = indiFormat.format(payment); String china = chiFormat.format(payment); String france = frFormat.format(payment); System.out.println("US: " + us); System.out.println("India: " + india); System.out.println("China: " + china); System.out.println("France: " + france); }
}
Seems like cookies are disabled on this browser, please enable them to open this website
Java Currency Formatter
You are viewing a single comment's thread. Return to all comments →
public class Solution {
}