简体   繁体   中英

Formatting, Big Decimal, interest to percent please

Can someone please explain the usage not just answer I really would like to learn how to do this. This is my 2nd month using Java and please explain formatting usage in Java. Thank you so much. I really appreciate it. Feel free to ask any other question in regards C++ or python. I am in need of help in formatting, big decimal usage and how to set


import java.util.*;

import java.math.BigDecimal;

import java.text.NumberFormat;

import java.math.*;


public class Main{
    public static void main(String[] args)
    {

        Scanner myCalculation = new Scanner(System.in);

        System.out.print("Welcome to the Interest Calculator \n\n");
        String option = "y";
        while (option.equalsIgnoreCase("y"))
        {

            System.out.print("Enter Loan Amount: ");
            //double loanAmount = 520000;
            double loanAmount = myCalculation.nextDouble();
            //Get Interest rate from user
            System.out.print("Enter Interest Rate: ");
            // double interRate = .05375;
            double interRate = myCalculation.nextDouble();


            double interest = loanAmount * interRate;

            System.out.printf("%.3f", interest);
            System.out.println();


            //prompt user to continue? if he enter y then it will Continue
            //else it will stop
            //System.out.println("Continue? (y:n): ");
            Scanner scan = new Scanner(System.in);
            boolean stop = false;    
            while(!stop) {
            //do whatever
                System.out.println("Would you like to continue? (yes or no)");
                String s = scan.nextLine();
                if(s.equals("no")) {
                    stop = true;
                }
            }

        }
    }
}
Scanner in = new Scanner(System.in);
System.out.print("enter double");
double d = in.nextDouble(); //doubles
System.out.print("enter int");
int i = in.nextInt(); //ints

System.out.print("enter text");
String text = in.next(); //gets a string up to the first space
in.nextLine();
System.out.print("enter text w/ spaces");
String line = in.nextLine(); //gets a string up to the first space

System.out.println(d);
System.out.println(i);
System.out.println(text);
System.out.println(line);
in.close();

System.out.println(new DecimalFormat("#.###").format(4.567346344634));

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM