price_graphicsCard = 0; ///cpu = 'a,b,c'; //RAM = 'd,e,f'; //monitor = 'g,h,i'; //graphicscard = 'j,k,l'; //get user input cout << "Choose processor:\n" << "(a)Intel i7 3.6GHz 6/12 threads $1,000.00\n, (b)Intel i7 3.5GHz 4/8 threads $349.00\n , (c)Intel i5 3.3GHz, 4/4 threads $241.00"; cin >> cpu; //Input choice of CPU - a for intel i7 , b for i7 or c for i5) if (cpu == 'a') price_cpu=1000.00; else if (cpu == 'b') price_cpu=349.00; else if (cpu == 'c') price_cpu=241.00; cout <<…
Words 616 - Pages 3