Advertisement
cynthiarez

WOW WTF??? MUST REVIEW CODE. INTERESTING

Sep 17th, 2019
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. int months, counter = 1 ;
  2. String str = "", str2;
  3. double bills;
  4. double bills2=0;
  5. double total = 0, ave = 0;
  6.  
  7. months = Integer.parseInt(JOptionPane.showInputDialog("Enter number of months of electricty bill"));
  8.  
  9. while (counter<=months)
  10. {
  11.  
  12.  
  13. bills = Double.parseDouble(JOptionPane.showInputDialog("Enter electricity bill for the month " + counter));
  14. bills2 = bills + bills2;
  15.  
  16. str += str2 = "Month: " + counter+ " = " + bills + "\n";
  17. counter++;
  18.  
  19. }
  20.  
  21. ave = bills2/counter;
  22. JOptionPane.showMessageDialog(null, str + "\n The total electricity bill is " + String.format("%.2f", bills2) + "\n The average is " + String.format("%.2f", ave));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement