can someone preform and show the output and etc's. with
code
The Case Assignment in Module 2 will accomplish three tasks:
Case Assignment
Write a java program to help you calculate property tax. The program will perform the following tasks:
Your task:
Assignment Expectations
The program needs to:
import java.util.*;
public class Main
{
public static void main(String[] args) {
double value,tax,total;
Scanner sc= new Scanner(System.in);
System.out.print("Enter the
property value of the house: ");
value=sc.nextDouble();
System.out.print("Enter the property tax rate: ");
tax=sc.nextDouble();
total= value +
(tax*value)/100;
System.out.print("Total propetry value:
"+total);
}
}
// if your desired output is different then provide the formula
Get Answers For Free
Most questions answered within 1 hours.