Advertisements
Advertisements
प्रश्न
In order to purchase an old car, the depreciated value can be calculated as per the tariff given below:
No. of years used | Rate of depreciation |
1 | 10% |
2 | 20% |
3 | 30% |
4 | 40% |
Above 4 years | 50% |
Write a menu driven program to input showroom price and the number of years the car is used ('1' for one year old, '2' for two years old and so on). Calculate the depreciated value. Display the original price of the car, depreciated value and the amount to be paid.
संक्षेप में उत्तर
उत्तर
import java.util.*;
public class Q14{
public static void main(String g[]){
int n; // number of years used
double price, drate, dval, amt; // price, depreciationrate, depreciated value
Scanner obj = new Scanner(System.in);
System.out.printIn("Enter the showroom price of the car");
price = obj.nextDouble();
System.out.printIn("Enter the number of years, the car had been used");
n = obj.nextInt();
switch(n)
{ case 0:
case 1: drate = 10.0 / 100; break;
case 2: drate = 20.0 / 100; break;
case 3: drate = 30.0 / 100; break;
case 4: drate = 50.0 / 100; break;
default: drate = 60.0 / 100;
}
dval = price * drate;
amt = price − dval; ’
System.out.printIn("\n\nOriginal Price: Rs. " + price);
System.out.printin("Depreciated Value: Rs. " + dval);
System.out.printIn("Amount Paid for the car: Rs. " + amt);
}}
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?