Answer:
#include <stdio.h>
int main()
{
printf("Please enter the actual value: $"); //taking actual value from the user
float actualValue ;
scanf("%f",&actualValue);
float asseValue = 0.6*actualValue; //calculating the assessment value
printf("The assessment value is: $%.2f\\",asseValue); //printing the assessment value
float tax = 0.0072*asseValue; //calculating the tax
printf("The tax is: $%.2f\\",tax); //printing the tax
return 0;
}
Step-by-step explanation:
See function that accepts the actual value of a piece of property and displays the assessment value and property tax above.