Answer to Question #187746 in Visual Basic for tafadzwa

Question #187746

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


1
Expert's answer
2021-05-03T01:27:25-0400
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

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS