The store Kohls is offering giftcards accourding to the following purchase amount:
amt purchased card amount
less than 25 $5
25-49 $10
50-99 $25
100+ $30
Using this information, write a C++ program that accepts the amount of purchase a customer has purchased, determine the customer’s gift amount and display the gift amount.
1 2 3 4 5 6 7 8 9
#include <iostream>
usingnamespace std;
int main ()
{
return 0;
system ("pause");
}