我叫王超然,是一名电脑爱好者,现在在新加坡留学上高一.我立志成为一名电脑人才,愿意在这里与大家一同分享我玩转电脑的心得.O-level华文考了A-One哈哈!
天气: 晴朗
心情: 高兴
import java.util.Scanner;
public class p1Q11 {
/** Main method */
public static void main(String[] args) {
// Receive the amount
Scanner scan = new Scanner(System.in);
System.out.println( "Enter an amount in double, for example 11.56: ");
String amountString = scan.next();
// Convert string to double
double amount = Double.parseDouble(amountString);
int remainingAmount = (int)(amount * 100);
// Find the number of one dollars
int numberOfOneDollars = remainingAmount / 100;
remainingAmount = remainingAmount % 100;
// Find the number of quarters in the remaining amount
int numberOfQuarters = remainingAmount / 25;
remainingAmount = remainingAmount % 25;
// Find the number of dimes in the remaining amount
int numberOfDimes = remainingAmount / 10;
remainingAmount = remainingAmount % 10;
// Find the number of nickels in the remaining amount
int numberOfNickels = remainingAmount / 5;
remainingAmount = remainingAmount % 5;
// Find the number of pennies in the remaining amount
int numberOfPennies = remainingAmount;
// Display results
String output = "Your amount " + amount + " consists of \n" +
numberOfOneDollars + " dollars\n" +
numberOfQuarters + " quarters\n" +
numberOfDimes + " dimes\n" +
numberOfNickels + " nickels\n" +
numberOfPennies + " pennies";
System.out.println(output);
}
}
导入论坛查看(38)回复(0)引用(0)好评(0) 差评(0)
加入收藏
编辑
审核
TAG:
computing