Black Leather Furniture

Discount Leather Furniture Knowledge Base

What is the policy on new furniture that has a damage? we had our new couch delivered today and then my dad saw that there's damage on the leather (the leather has a tear on the side). My dad says it might be from the rope or how it was deliverd....how much discount should we ask the store we bought it from. Should we just ask them to replace it. Whats the policy on new furniture that has a damage.
Buying Furniture? Is it worth haggling over the price? I'm looking at a 4 piece leather living room set. The price I was quoted was $2,624 and I asked the salesperson since I was buying the set, would there be a discount? They took off $175. I told him this was still a bit over my budget of $2,000. He said to think about it and call him in the morning, and maybe we could discuss the price then. My question is, Am I crazy for trying to get the best price. I love this set but don't like the price. I would still have to pay tax and delivery. How much more of a discount do you think I could get? I've heard that furniture has a huge markup but I'm not sure how much of the price is negotiable. Thank you for your help. Thanks to all for your helpful advice. I bought the furniture without an additional discount and I think I will be happy with it. This website is great http://www.dpbolvw.net/click-1507807-103... and I'm marking it as one of my favorites. So thanks for sharing that with me. : )
where can you buy good furniture in houston at a good price.? i want to redecorate my house and want new sofas i would like a sectional or leather, at a good price or clearance discount stores or something thanks
Any suggestions on how to decorate new constr. house that's all beige interior. I'm a country girl.? I'm afraid I won't like wall color afterwards. Living room, kitchen and den share common wall. How do I break up areas?Enter large LR w/oak laminate floor to light tile floor and light oak cabinets in kitchen which is open to family room w/laminate floor.Living/family room have coiffered (spelling?..raised inset )ceiling. Everything is beige with white crown molding. Currently have white mini blinds on windows. No LR furnishing yet. Like country and cabin style but house feels too big (l800 sf) for cozy feeling. Light saddle colored leather furniture in FR. Where can I shop for normal not oversized furniture. I don't know where to start. Looking for discount & inexpensive ideas too.
Redoing 2 bedrooms, help!? Ok, so I am going to be redoing two bedrooms in my parents house, mine(14 years) and my daughters(not born yet) Mine is going to be- Colors:Neon Green, Hot Pink, Neon Aqua Walls: Hot Pink with Neon Aqua stripes Wood work: Neon Green Ceiling: Zebra Stripes(white and black) and then the bedding and curtains and stuff will be zebra. Black furniture(bed, dresser, desk, side table, coffee table, leather love couch) Yeah, so I have a pretty big room. Nursery(right next to my room) Light pink walls with light green accents. dark brown furniture(crib, changing table, dresser) white carpeted floors(kind of off white actually) and then light green sheets, with a light pink, light green and black baby blanket) I don't have the babies stuff all ready yet, the decorations and stuff aren't being close to done, I can't think of any! My Room- Do you think my room is too much? Is it not enough? Should I add/change remove anything? Nursery- What can I add? Do you like the idea of what I have yet? By the way, we haven't gotten any furniture yet due to the fact I am not sure yet, but I am getting them in less than a week(I have a really good discount at a furniture store because family works there, so price doesn't really matter) Thanks in advance! wow gulfgirl, i actually think i may do that instead of stripes: ^ ).
Calling a computetotalHomeCost method in Java??? HELP!? ok here is my code, it compiles and runs but when it does it keeps giving me one total and one discount with each option and i dont know how to fix it so it ouputs the correct total cost. Please help... im just a beginner in this! haha import java.io.*; import javax.swing.JOptionPane; import java.util.Scanner; import java.text.DecimalFormat; public class Lab5Fall09 { public static void main(String[] args) { // Variable declarations needed double optionalFeaturesCost = 0.0; double discount = 0.0; double totalHomeCost = 0.0; double netHomeCost = 0.0; double taxes = 0.0; double profit = 0.0; int number = 0; int quote; String inputString = ""; final double basicHomeCost = 48000; final double PERCENT_PROFIT =.33; final double STATE_TAX_RATE = .075; Scanner input = new Scanner(System.in); DecimalFormat formatter = new DecimalFormat("$#,##0.00"); descriptionMsg(); //Start Loop here quote = 0; while (quote < 5) { optionalFeaturesCost = 0.0; discount = 0.0; quote = quote + 1; inputString = JOptionPane.showInputDialog(("This is try # " + quote + "To get a good cost quote\n" + "For the Basic Motor home Enter 1\n" + "For a Motor Home with Optional Features Enter 2")); if((Integer.parseInt (inputString) != 1) && (Integer.parseInt (inputString) != 2)) { JOptionPane.showMessageDialog(null,"Wrong input for Motor Home Type"); inputString = JOptionPane.showInputDialog("Re-enter for the Basic Motor home Enter 1\n" + "For a Motor Home with Optional Features Enter 2"); } //motor home option == 1 if((Integer.parseInt (inputString) == 1) && (Integer.parseInt (inputString) != 2)) { JOptionPane.showMessageDialog(null,"Your quote for a basic motor home is 48000.0"); System.exit(0); } else if(Integer.parseInt (inputString) != 1) //motor home option == 2 getEngineOptions(optionalFeaturesCost); getTransmissionOptions(optionalFeaturesCost); getCabinetOptions(optionalFeaturesCost); { //Get furniture option inputString = JOptionPane.showInputDialog("For Fully Integrated Designer Furniture with Cloth Upholstery Enter 1\n" + "For all the above with Real Leather Upholstery Enter 2\n" + "For all the above with Special Plus Carpeting, Ceramic Tile, and Real Wood Paneling Enter 3\n" + "For all the above with Gold Kitchen and Bath Fixtures, Jacuzzi, and Sauna Enter 4"); } //Check for furniture option errors if((Integer.parseInt(inputString) != 1)) if((Integer.parseInt(inputString) != 2)) if((Integer.parseInt(inputString) != 3)) if((Integer.parseInt(inputString) != 4)) { JOptionPane.showMessageDialog(null,"Incorrect input for Furniture type "); inputString = JOptionPane.showInputDialog(" Re-Enter for Fully Integrated Designer Furniture with Cloth Upholstery Enter 1\n" + "For all the above with Real Leather Upholstery Enter 2\n" + "For all the above with Special Plus Carpeting, Ceramic Tile, and Real Wood Paneling Enter 3\n" + "For all the above with Gold Kitchen and Bath Fixtures, Jacuzzi, and Sauna Enter 4"); } switch (Integer.parseInt(inputString)) { case 1: JOptionPane.showMessageDialog(null,"You Entered 1."); break; case 2: JOptionPane.showMessageDialog(null,"You Entered 2."); break; case 3: JOptionPane.showMessageDialog(null,"You Entered 3."); break; case 4: JOptionPane.showMessageDialog(null,"You Entered 4."); } //Calculate optionalFeaturesCost if(Integer.parseInt(inputString) ==1) optionalFeaturesCost +=15000; else if(Integer.parseInt(inputString) ==2) optionalFeaturesCost +=20000; else if(Integer.parseInt(inputString) ==3) optionalFeaturesCost +=30000; else if(Integer.parseInt(inputString) ==4) optionalFeaturesCost +=35000; computeDiscount(optionalFeaturesCost,discount); computetotalHomeCost(totalHomeCost,optionalFeaturesCost,discount); } //ask for more quotes inputString = JOptionPane.showInputDialog("If You Would Like More Quotes Enter 1\n"+ "To Save Last Quote Enter Any Other Number"); quote++; if(Integer.parseInt (inputString) == 1) //doesn't exceed the number of quotes and wants more System.out.println("Rerun Program and Enter Option Choices Again"); else if(Integer.parseInt (inputString) != 1) //doesn't want more quotes and wants to exit goodByeMsg(); System.exit(0); } //End of Main Method //descriptionMess
more java....problems? ok heres my code again... that loop fix worked. Is there anyway I can put in a do loop and if so can you literally show me?? import java.io.*; import javax.swing.JOptionPane; import java.util.Scanner; import java.text.DecimalFormat; public class Lab4Fall09 { public static void main(String[] args) { // Variable declarations needed double optionalFeaturesCost = 0.0; double discount = 0.0; double totalHomeCost = 0.0; double netHomeCost = 0.0; double taxes = 0.0; double profit = 0.0; int number = 0; int quote; String inputString=""; final double basicHomeCost = 48000; final double PERCENT_PROFIT =.33; final double STATE_TAX_RATE = .075; Scanner input = new Scanner(System.in); DecimalFormat formatter = new DecimalFormat("$#,##0.00"); //program introduction JOptionPane.showMessageDialog(null,"This program allows you to select either a standard or a custom built motor home\n"+ "The program will total up and display the cost of the motor home you select and\n"+ "You will be given up to 6 attempts to pick the motor home you want"); //Start Loop here quote = 1; while (quote < 5) { optionalFeaturesCost = 0.0; discount = 0.0; quote = quote + 1; inputString = JOptionPane.showInputDialog(("This is try # " + quote + "To get a good cost quote\n" + "For the Basic Motor home Enter 1\n" + "For a Motor Home with Optional Features Enter 2")); if((Integer.parseInt (inputString) != 1) && (Integer.parseInt (inputString) != 2)) { JOptionPane.showMessageDialog(null,"Wrong input for Motor Home Type"); System.out.println("Rerun the program."); System.exit(0); } if(Integer.parseInt (inputString) == 2) //motor home option == 2 //Engine Options inputString = JOptionPane.showInputDialog("For a Standard Diesel Engine Enter 1\n" + "For a Heavy Duty Diesel Engine Enter 2"); //Engine Errors if((Integer.parseInt (inputString) != 1) && (Integer.parseInt(inputString) != 2)) { System.out.print("Wrong input for Engine Type"); System.out.println("Rerun the program."); System.exit(0); } //Calculate OptionalFeaturesCost if(Integer.parseInt(inputString) == 1) optionalFeaturesCost += 4000; else optionalFeaturesCost += 8000; //Transmission Options inputString = JOptionPane.showInputDialog("For a Standard Shift Transmission Enter 1\n" + "To Keep Automatic Transmission Enter 3"); if((Integer.parseInt (inputString) != 1) && (Integer.parseInt (inputString) != 3)) { System.out.print("Wrong input for Transmission Type"); System.out.println("Rerun the program."); System.exit(0); } //Calculate optionalFeaturesCost if(Integer.parseInt(inputString) == 1) optionalFeaturesCost -= 2000; //Cabinet Options inputString = JOptionPane.showInputDialog("For Deluxe Wood Cabinets and Granite Counter Tops Enter 1\n" + "To keep the standard Cabinets and Counter tops Enter 2"); //Calculate optionalFeaturesCost if(Integer.parseInt(inputString) ==1) optionalFeaturesCost +=18000; { //Get furniture option inputString = JOptionPane.showInputDialog("For Fully Integrated Designer Furniture with Cloth Upholstery Enter 1\n" + "For all the above with Real Leather Upholstery Enter 2\n" + "For all the above with Special Plus Carpeting, Ceramic Tile, and Real Wood Paneling Enter 3\n" + "For all the above with Gold Kitchen and Bath Fixtures, Jacuzzi, and Sauna Enter 4"); } switch (Integer.parseInt(inputString)) { case 1: JOptionPane.showMessageDialog(null,"You Entered 1."); break; case 2: JOptionPane.showMessageDialog(null,"You Entered 2."); break; case 3: JOptionPane.showMessageDialog(null,"You Entered 3."); break; case 4: JOptionPane.showMessageDialog(null,"You Entered 4."); } //Check for furniture option errors if((Integer.parseInt(inputString) != 1)) if((Integer.parseInt(inputString) != 2)) if((Integer.parseInt(inputString) != 3)) if((Integer.parseInt(inputString) != 4)) { System.out.println("Incorrect input for Furniture type "); System.out.println("Rerun the program."); System.exit(0); } //Calculate optionalFeaturesCost if(Integer.parseInt(inputString) ==1) optionalFeaturesCost +=15000; else if(Integer.parseInt(inputString) ==2) optionalFeaturesCost +=20000; else if(Integer.parseInt(inputString) ==3) optionalFeaturesCost +=30000; else if(Integer.parseInt(inputString) ==4) optionalFeaturesCost +=35000; //Get discount if any discount = .1 * optionalFeaturesCost;
Java loop Problem HEEELP!? Here's my code... this program compiles, and runs, but I cant get the increments right and it wont exit out of the loop after 5 times. Im a major beginner!!! I need all the help I can get asap. thank you!! import java.io.*; import javax.swing.JOptionPane; import java.util.Scanner; import java.text.DecimalFormat; public class Lab4Fall09 { public static void main(String[] args) { // Variable declarations needed double optionalFeaturesCost = 0.0; double discount = 0.0; double totalHomeCost = 0.0; double netHomeCost = 0.0; double taxes = 0.0; double profit = 0.0; int number = 0; int quote; String inputString=""; final double basicHomeCost = 48000; final double PERCENT_PROFIT =.33; final double STATE_TAX_RATE = .075; Scanner input = new Scanner(System.in); DecimalFormat formatter = new DecimalFormat("$#,##0.00"); //program introduction JOptionPane.showMessageDialog(null,"This program allows you to select either a standard or a custom built motor home\n"+ "The program will total up and display the cost of the motor home you select and\n"+ "You will be given up to 5 attempts to pick the motor home you want"); //Start Loop here quote = 0; quote = quote + 1; while (quote <= 5) { optionalFeaturesCost = 0.0; discount = 0.0; inputString = JOptionPane.showInputDialog(("This is try # " + quote + "To get a good cost quote\n" + "For the Basic Motor home Enter 1\n" + "For a Motor Home with Optional Features Enter 2")); if((Integer.parseInt (inputString) != 1) && (Integer.parseInt (inputString) != 2)) { JOptionPane.showMessageDialog(null,"Wrong input for Motor Home Type"); System.out.println("Rerun the program."); System.exit(0); } if(Integer.parseInt (inputString) == 2) //motor home option == 2 //Engine Options inputString = JOptionPane.showInputDialog("For a Standard Diesel Engine Enter 1\n" + "For a Heavy Duty Diesel Engine Enter 2"); //Engine Errors if((Integer.parseInt (inputString) != 1) && (Integer.parseInt(inputString) != 2)) { System.out.print("Wrong input for Engine Type"); System.out.println("Rerun the program."); System.exit(0); } //Calculate OptionalFeaturesCost if(Integer.parseInt(inputString) == 1) optionalFeaturesCost += 4000; else optionalFeaturesCost += 8000; //Transmission Options inputString = JOptionPane.showInputDialog("For a Standard Shift Transmission Enter 1\n" + "To Keep Automatic Transmission Enter 3"); if((Integer.parseInt (inputString) != 1) && (Integer.parseInt (inputString) != 3)) { System.out.print("Wrong input for Transmission Type"); System.out.println("Rerun the program."); System.exit(0); } //Calculate optionalFeaturesCost if(Integer.parseInt(inputString) == 1) optionalFeaturesCost -= 2000; //Cabinet Options inputString = JOptionPane.showInputDialog("For Deluxe Wood Cabinets and Granite Counter Tops Enter 1\n" + "To keep the standard Cabinets and Counter tops Enter 2"); //Calculate optionalFeaturesCost if(Integer.parseInt(inputString) ==1) optionalFeaturesCost +=18000; { //Get furniture option inputString = JOptionPane.showInputDialog("For Fully Integrated Designer Furniture with Cloth Upholstery Enter 1\n" + "For all the above with Real Leather Upholstery Enter 2\n" + "For all the above with Special Plus Carpeting, Ceramic Tile, and Real Wood Paneling Enter 3\n" + "For all the above with Gold Kitchen and Bath Fixtures, Jacuzzi, and Sauna Enter 4"); } switch (Integer.parseInt(inputString)) { case 1: JOptionPane.showMessageDialog(null,"You Entered 1."); break; case 2: JOptionPane.showMessageDialog(null,"You Entered 2."); break; case 3: JOptionPane.showMessageDialog(null,"You Entered 3."); break; case 4: JOptionPane.showMessageDialog(null,"You Entered 4."); } //Check for furniture option errors if((Integer.parseInt(inputString) != 1)) if((Integer.parseInt(inputString) != 2)) if((Integer.parseInt(inputString) != 3)) if((Integer.parseInt(inputString) != 4)) { System.out.println("Incorrect input for Furniture type "); System.out.println("Rerun the program."); System.exit(0); } //Calculate optionalFeaturesCost if(Integer.parseInt(inputString) ==1) optionalFeaturesCost +=15000; else if(Integer.parseInt(inputString) ==2) optionalFeaturesCost +=20000; else if(Integer.parseInt(inputString) ==3) optionalFeaturesCost +=30000; else if(Integer.parseInt(inputString) ==4) optionalFeaturesCost +=35000;
Powered by Yahoo! Answers