English

Define a class Discount having the following description: Class name: Discount Data members int cost: to store the price of an article String name: to store the customer's name - Computer Applications

Advertisements
Advertisements

Question

Define a class Discount having the following description: 

Class name: Discount
Data members
int cost: to store the price of an article
String name: to store the customer's name
double dc: to store the discount
double amt: to store the amount to be paid
Member methods:
void input(): Stores the cost of the article and name of the customer.
void cal(): Calculates the discount and amount to be paid
Void display(): Displays the name of the customer, cost, discount and amount to be paid

Write a program to compute the discount according to the given conditions and display the output as per the given format.

List Price Rate of discount
Up to ₹ 5,000 No discount
From ₹ 5,001 to ₹ 10,000 10% on the list price
From ₹ 10,001 to ₹ 15,000 15% on the list price
Above ₹ 15,000 20% on the list price

 

Output: Name of the customer Discount Amount to be paid
  ........................... ........................... ...........................
  ........................... ........................... ...........................
  ........................... ........................... ...........................
Code Writing

Solution

import java.util.*;
class Discount
{int cost;
String name;
double dc, amt;

void input()
{Scanner in = new Scanner(System.in);
System.out.println("Enter the name of the customer");
name = in.nextLine();
System.out.println("Enter the cost of the article");
cost = in.nextInt();
}

void cal()
{if (cost <= 5000)
dc = 0;
else if ((cost >= 5001) && (cost <= 10000))
dc = 0.10 * cost;
else if ((cost >= 10001) && (cost <= 15000))
dc = 0.15 * cost;
else if (cost > 15000)
dc = 0.20 * cost;
amt = cost - dc;
}

void display()
{System.out.println("Name of the customer\tCost\tDiscount\tAmount to be paid");
System.out.println(name + "\t\t" + cost + "\t" + dc + "\t\t" + amt);
}

public static void main(String args[])
{Discount dis = new Discount();
dis.input();
dis.cal();
dis.display();
}
}
shaalaa.com
  Is there an error in this question or solution?
Chapter 6: Class as the Basis of all Computation (Objects and Classes) - EXERCISES [Page 385]

APPEARS IN

Avichal Computer Applications [English] Class 10 ICSE
Chapter 6 Class as the Basis of all Computation (Objects and Classes)
EXERCISES | Q VI. 4. | Page 385
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×