Case Study

Formatted Payments | Java

use the NumberFormat class’ getCurrencyInstance method to convert into the US, Indian, Chinese, French and many more currency formats. https://docs.oracle.com/javase/8/docs/api/java/util/Locale.html#Locale-java.lang.String-java.lang.String- public Locale(String language, String country, String variant) Construct a locale…

Flipping bits

JS 'use strict'; const fs = require('fs'); process.stdin.resume(); process.stdin.setEncoding('utf-8'); let inputString = ''; let currentLine = 0; process.stdin.on('data', function(inputStdin) { inputString += inputStdin; }); process.stdin.on('end', function() { inputString = inputString.split('\n');…