i am having trouble with my code i am writing code for calculating the tax rate and mark up percentage of items in a store and i entered a double variable for the original price at 100 and when it was all calculated it didnt set it equal to 100
i know i prolly worded this bad but heres my code so u can see what im talking about
#include <iostream>
#include <iomanip>
#include <string>
using namespace std;
const string MY_NAME = "Taren Davis";
const string MY_ASSIGNMENT = "Exercise 2";
const int SCREEN_WIDTH = 70;
int main(void)
{
double originalPrice;
double percentOfMarkedUpPrice;
double markedUpPrice;
double salesTaxRate;
double sellingPrice;
double salesTax;
double finalPrice;
int itemNum;