Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.45 KB | None | 0 0
  1. package com.company;
  2. import java.util.Scanner;
  3.  
  4. public class Main {
  5.  
  6.     public static void main(String[]args) {
  7.  
  8.         System.out.println("Введите ваш доход: ");
  9.         Scanner sc = new Scanner(System.in);
  10.         double income = sc.nextDouble();
  11.         double sum = 0;
  12.         double tax = 0.15 * income;
  13.  
  14.         if ((income > 0)) {
  15.             System.out.printf("Ваш налог: %.2f USD", tax);
  16.         }
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement