property tax is calculated as 1,56% of the asset value of a property. program to accept the asset valuec750,00000 and calculate and display the property tax
Module Module1
Sub Main()
Console.Write("Enter the asset value of a property: ")
Dim asset As Double = Double.Parse(Console.ReadLine())
'property tax is calculated as 1,56% of the asset value of a property.
Dim tax As Double = asset * 1.56 / 100
Console.WriteLine("The tax of propertyis: {0}", tax.ToString("C"))
Console.ReadLine()
End Sub
End Module
Comments
Leave a comment