Answer to Question #77480 in C++ for Erik Rubino

Question #77480
In the United States there is no federal sales tax, so every state may impose its own sales taxes. Look on the Internet for the sales tax charged in five U.S. states, then write a program that prints the tax rate for five states of your choice.
Sales Tax Rates
---------------
Alaska: 0%
Hawaii: 4%
. . .
1
Expert's answer
2018-05-23T07:52:44-0400
#include <iostream>

int main()
{
std::cout << "Colorado: 2.9%" << std::endl;
std::cout << "Florida: 6%" << std::endl;
std::cout << "Indiana: 7%" << std::endl;
std::cout << "Missouri: 4.225%" << std::endl;
std::cout << "Nevada: 6.85%" << std::endl;
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