Answer to Question #218719 in C++ for abc deefgh

Question #218719

enter the assessed value and tax rate

caculate th annual property tax by dividing the assessed value by 100 and then multiplying the result by the tax rate

display the annual property tax


1
Expert's answer
2021-07-19T02:46:06-0400
#include <iostream>
using namespace std;
int main(){
    float assessed_value, tax_rate;
    cout<<"Enter assessed value: ";
    cin>>assessed_value;
    cout<<"Enter tax rate (e.g 18): ";
    cin>>tax_rate;
    cout<<"Annual property tax: "<<assessed_value/100 * tax_rate;
    return 0;
}

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