Advertisement
KeeganT

Ch4Ex6

Feb 6th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.66 KB | None | 0 0
  1. package ch4ex6;
  2. import java.util.Scanner;
  3.  
  4. public class Ch4Ex6
  5. {
  6.     public static void main(String[] args)
  7.     {
  8.         Scanner sc=new Scanner(System.in);
  9.         int total;
  10.         System.out.println("Enter the change in cents: ");
  11.         total=sc.nextInt();
  12.         System.out.println("The minimum number of coins is:");
  13.         int q=total/25;
  14.         total=total%25;
  15.         System.out.println("Quarters: "+q);
  16.         int d=total/10;
  17.         total=total%10;
  18.         System.out.println("Dimes: "+d);
  19.         int n=total/5;
  20.         total=total%5;
  21.         System.out.println("Nickles: "+n);
  22.         System.out.println("Pennies: "+total);
  23.     }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement