45rpm-records 45 Record Display Frames free product reviews

It is difficult to determine how well a device of this type works without a microscopic look at the record surface. It leaves no visible residue on the disc surface detectable by the naked eye. As far as de-staticizing a disc, who knows? At least it doesn’t add any while sweeping.

Need help with my C++ project please.?
I am working on a C++ project for my programming in C++ class. I decided to make a simple home warranty program that was user interactive & would display a work order as a result. I was able to get the program to compile. I wanted to add certain features to it though, but cannot figure out how to go about adding them in in order to get it to compile correctly. For example, I wanted the program to be able to distinguish which person would receive the work order by which community name was entered in. Or another thing I would like to add is being able to add more than one defect together per homeowner and displaying a total. I have tried a number of different things, but just keep getting more and more lost. I am still having a hard time trying to understand C++ as it is, so please try and keep it simple enough to understand. Here is the sample of my code. Any help or direction would be greatly appreciated. Thanks.#include “stdafx.h”#include #include #include using namespace std;const float FPRICE = 500.00;//foundation service call priceconst float RPRICE = 149.50;//roof service call priceconst float VPRICE = 120.00;//vinyl siding service call priceconst float WPRICE = 50.00;//window service call priceconst float GPRICE = 225.00;//grading/drainage service 45 Record Display Frames call priceconst float DPRICE = 50.00;//door service call priceconst float PPRICE = 375.00;//plumbing service call priceconst float APRICE = 175.75;//asphalt/driveway service call priceconst float IPRICE = 424.99;//improper flashing service call priceconst float SPRICE = 250.00;//structural/framing service call priceconst float TPRICE = 45.00;//tile flooring service call pricestruct Customer{string name;string address1;string address2;string community;string manager;char defect;char dtype;string defecttype;char goodescrow;double amount;};Customer recvorder();// function prototype needed for main()void workslip(Customer);//function prototype needed for main()int main(){Customer client;client = recvorder();// enter the orderworkslip(client);// prepare work orderreturn 0;}// enter an orderCustomer recvorder()// return a structure of type Customer{Customer record;// record is local to this functionchar dtype = ‘N’;char escrow = ‘U’;double price;string community;string manager;cout <<"\nWelcome to The Home Warranty Reporting Center.";cout <<"\nPlease enter some homeowner information: ";cout <<"\nName: ";getline (cin, record.name);cout <<"Street Address: ";getline (cin, record.address1); cout <<"City, State, Zip: ";getline (cin, record.address2);cout <<"\nWhat is the name of the community? ";getline (cin, record.community);cout <<"\nWhat is the defect you are experiencing?, ";cout <<"\nPlease enter a letter corresponding to the defect";cout <<"\nfrom the list below: ";cout <<"\n F = Foundation";cout <<"\n R = Roof";cout <<"\n V = Vinyl Siding";cout <<"\n W = Window";cout <<"\n G = Grading/Drainage";cout <<"\n D = Door";cout <<"\n P = Plumbing";cout <<"\n A = Asphalt/Driveway";cout <<"\n I = Improper Flashing";cout <<"\n S = Structural/Framing";cout <<"\n T = Tile Flooring";cout <<"\nPlease choose one (i.e. F, R, or S): ";cin >> dtype;while( !(dtype == ‘F’ || dtype == ‘R’ || dtype == ‘V’ || dtype == ‘W’ || !dtype == ‘G’ || dtype == ‘D’ || dtype == ‘P’ || dtype == ‘A’ || !dtype == ‘I’ || dtype == ‘S’ || dtype == ‘T’) ) dtype = toupper(dtype);// make sure it’s in uppercase// determine which service manager will receive the work order/*if (community == ‘Four Seasons at Mirage’) manager = ‘John Smith’;else cout <<'John Doe';*/// determine cost of the service callif (dtype == 'F')price = FPRICE;else if (dtype == 'R')price = RPRICE;else if (dtype == 'V')price = VPRICE;else if (dtype == 'W')price = WPRICE;else if (dtype == 'G')price = GPRICE;else if (dtype == 'D')price = DPRICE;else if (dtype == 'P')price = PPRICE;else if (dtype == 'A')price = APRICE;else if (dtype == 'I')price = IPRICE;else if (dtype == 'S')price = SPRICE;else if (dtype == 'T')pr
Powered by Yahoo! Answers

45 Record Display Frames


45rpm-records 45 Record Display Frames free product reviews

Comments are closed.