create a program that will accept bill of customer and add 5.5% service tax to it. ans fast
Answers
Answered by
1
Answer:
array of positive integers. note : you are expected to write code in the findtotaldistance function only which receive the first parameter as the numbers of items in the array and second paramter as the array itself. you are not required to take the input from the c
Answered by
1
Answer:
class Servicetax
{
public void display (int bill)
{
double total_bill;
total_bill = bill + (bill * 5.5 / 100);
S.o.pln ("old bill is : Rs." + bill );
S.o.pln ("total bill including service
tax is : Rs." +total_bill );
}
}
OUTPUT => Old bill is : Rs. 550
Total bill including service tax
is : Rs. 550
Similar questions