476179

percents and conversion

Oct 2nd, 2019
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. package activities;
  2.  
  3. public class PercentsAndConversion
  4. {
  5.  
  6. public static void main(String[] args)
  7. {
  8. //1
  9. // east coast sales makes 62% of all sales
  10. //if company makes $4.6 mil in yearly revenue, how much did east cost div make
  11. double ECD_Rate = .62, totalRev = 4.6E6, ECD_sales;
  12. ECD_sales = totalRev * ECD_Rate;
  13. System.out.println("East Coast Sales Div. generated: $"+ECD_sales);
  14.  
  15.  
  16. }
  17.  
  18. }
Add Comment
Please, Sign In to add comment