A shopkeeper offers 10% discount on the printed price of digital camera our customer has to pay 6% of GST on remaining amount write a program in Java to calculate the amount to be paid by customer taking the printer prices as an input through method call.
Answers
Answered by
2
Answer:
shopkeeper offers 10% discount on the printed price of digital camera our customer has to pay 6% of GST on remaining amount.
Explanation:
import java.io.*;
{ public static void main(String args[])throws IOException
InputStreamReader read =new InputStreamReader(System.in);
BufferedReader in =new BufferedReader(read);
double a;
double dis,ra,st,pa;
System.out.println(“Enter the marked price of the camera”);
a=Double.parseDouble(in.readLine());
dis=30.0/100.0*a;
ra=a-dis;
st=6.0/100.0*a;
pa=ra+st;
System.out.println(“paid amount=”+pa);
Answered by
0
Answer:
90*print rate/100+(90*print rate/100)*6
Similar questions
Math,
3 months ago
CBSE BOARD XII,
3 months ago
Math,
3 months ago
Science,
7 months ago
History,
7 months ago
Social Sciences,
11 months ago
English,
11 months ago