Advertisement
Guest User

Untitled

a guest
Sep 30th, 2022
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Task_Five {
  4. public static void main(String[] args) {
  5. Scanner scanner = new Scanner(System.in);
  6. int n = scanner.nextInt();
  7. double discount = 0.65;
  8.  
  9.  
  10.  
  11. for (int i = 0; i < n ; i++) {
  12. double item = scanner.nextDouble();
  13. discount = item * discount;
  14. item = item - discount;
  15. System.out.print(item);
  16.  
  17. }
  18.  
  19. }
  20.  
  21. }
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement