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
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);
}
}
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