Computer Science, asked by VenkiDOP, 1 year ago

Write an application to find the monthly water charges for the given initial reading and closing meter reading. Assume the water charges as 10 paise per liter.

Answers

Answered by shukoor
4
Well If its a Java Program then here's the solution for it :

public class water_charge
{
public static void main (int l)
{
int bill; // Declaring a variable to calculate and store the value.
bill = l * 0.10 ;
System.out.println ( "Total charge ="+bill);
}
}

Similar questions