Menu

Post image 1
Post image 2
Post image 3
1 / 3
0

Constructor Program in Java

DEV Community·Sasireka·about 1 month ago
#NnSygfKG
Reading 0:00
15s threshold

public class Supermart { String productName ; int price ; boolean discountAvailable ; int discountPercentage ; public Supermart ( String productName , int price , boolean discountAvailable , int discountPercentage ) { this . productName = productName ; this . price = price ; this . discountAvailable = discountAvailable ; this . discountPercentage = discountPercentage ; } public static void main ( String [] args ) { Supermart p1 = new Supermart ( "Rice" , 1000 , true , 20 ); p1 . display (); } public void display () { int finalPrice = price ; if ( discountAvailable ) { finalPrice = price - ( price * discountPercentage / 100 ); } System . out . println ( "Product Name: " + productName ); System . out . println ( "Price: " + price ); System . out . println ( "Discount Available: " + discountAvailable ); if ( discountAvailable ) { System . out . println ( "Discount Percentage: " + discountPercentage ); } System . out .…

Continue reading — create a free account

Join HashtagPLUS to read full articles, follow hashtags, vote, and join the conversation.

Read More