Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
?
I'm an attractive person...how come I haven't had sex yet?
I've asked a few of my friends including the hottest girl I know about the idea of me becoming a model and they have all backed me up and said yes. But how come I haven't had sex yet? I have a fantastic body according to them and I have "the look". I try hard to not be cocky, and empathize with others; even then, though I have good looks it's like I need to prove my intelligence to everyone first before I can be accepted. Help?...
5 AnswersLesbian, Gay, Bisexual, and Transgender7 years agoDo you think the scale on which gender issues are being addressed nowadays is a bit ridiculous?
I'm reading a news article and I was surprised to see this. "Lacrosse is benefiting NCAA athletic departments as they deal with the complexities of gender equality because it provides a large-number participant team sport for women."
I wasn't expecting an equality "issue" to be mentioned at all. Didn't we already go through gender issues back in the late 19th and early 20th centuries here in America? I thought equality was and is as equal as it can get. That's what my teachers taught me from elementary all the way through high school!
The article's three years old but I think my question relating to this is more relavent than ever. Here's the article.
2 AnswersOther - Cultures & Groups8 years agoSo the last day of school for me was today, and?
It doesn't feel like summer at all! Why?
5 AnswersPrimary & Secondary Education8 years agoDo Atheists become Liberal because they have no Religion?
And then from there they start to base their beliefs in politics and that's why we have so many whack-job laws and politicians in office?
13 AnswersReligion & Spirituality8 years agoHelp with C++ program?
The program should do the following:
1. Display the items and prices of the 10 items.
2. Ask the user to enter the 1st item, display its price.
3. Ask the user to enter the 2nd item, display its price.
4. When they are finished entering the items, display a list of items.
5. Calculate the subtotal, add up the prices.
6. Display the subtotal
7. Calculate the tax and display it.
8.Calculate the total and display it.
9. Display a thank you and come again.
Here's what I have so far. The real problem for me is changing the ints into the price. (Xbox360 = 1 into 299.99 = 1)
// Part 2
int num1, num2;
int Xbox360 = 1;
int PS2 = 2;
int PS3 = 3;
int PS4 = 4;
int WiiU = 5;
int Xbox360Controller = 6;
int PS2Controller = 7;
int PS3Controller = 8;
int PS4Controller = 9;
int WiiUController = 10;
cout << "Welcome to Electricy Plus! " << endl;
cout << "There are ten products to choose from. " << endl;
cout << "Please choose a number between one and ten. " << endl;
cout << " " << endl;
cout << "1 = Xbox 360 Price = $299.99 " << endl;
cout << "2 = PS2 Price = $129.99 " << endl;
cout << "3 = PS3 Price = $299.99 " << endl;
cout << "4 = PS4 Price hasn't been announced yet! Pre-Order now! " << endl;
cout << "5 = Wii U Price = $299.99 " << endl;
cout << "6 = Xbox 360 Controller Price = $49.99 " << endl;
cout << "7 = PS2 Controller Price = $29.99 " << endl;
cout << "8 = PS3 Controller Price = $49.99 " << endl;
cout << "9 = PS4 Controller Price hasn't been announced yet! Pre-Order the PS4! " << endl;
cout << "10 = Wii U Controller Price = $145.00 " << endl;
cin >> num1;
if (num1 == 1)
{
cout << "You have chosen the Xbox 360. The subtotal is $299.99. " << endl;
}
if (num1 == 2)
{
cout << "You have chosen the PS2. The subtotal is $129.99. " << endl;
}
if (num1 == 3)
{
cout << "You have chosen the PS3. The subtotal is $299.99. " << endl;
}
if (num1 == 4)
{
cout << "You have chosen the PS4. This item isn't available yet! Pre-Order now!. " << endl;
}
if (num1 == 5)
{
cout << "You have chosen the Wii U. The subtotal is $299.99. " << endl;
}
if (num1 == 6)
{
cout << "You have chosen the Xbox 360 Controller. The subtotal is $49.99. " << endl;
}
if (num1 == 7)
{
cout << "You have chosen the PS2 Controller. The subtotal is $29.99. " << endl;
}
if (num1 == 8)
{
cout << "You have chosen the PS3 Controller. The subtotal is $49.99. " << endl;
}
if (num1 == 9)
{
cout << "You have chosen the PS4 Controller. This item isn't available yet! Pre-Order the PS4! " << endl;
}
if (num1 == 10)
{
cout << "You have chosen the Wii U Controller. The subtotal is $145.00. " << endl;
}
cout << "Please choose a second product. (#1-10) " << endl;
cin >> num2;
if (num2 == 1)
{
cout << "You have chosen the Xbox 360. The subtotal is $299.99. " << endl;
}
if (num2 == 2)
{
cout << "You have chosen the PS2. The subtotal is $129.99. " << endl;
}
if (num2 == 3)
{
cout << "You have chosen the PS3. The subtotal is $299.99. " << endl;
}
if (num2 == 4)
{
cout << "You have chosen the PS4. This item isn't available yet! Pre-Order now!. " << endl;
}
if (num2 == 5)
{
cout << "You have chosen the Wii U. The subtotal is $299.99. " << endl;
}
if (num2 == 6)
{
cout << "You have chosen the Xbox 360 Controller. The subtotal is $49.99. " << endl;
}
if (num2 == 7)
{
cout << "You have chosen the PS2 Controller. The subtotal is $29.99. " << endl;
}
if (num2 == 8)
{
cout << "You have chosen the PS3 Controller. The subtotal is $49.99. " << endl;
}
if (num2 == 9)
{
cout << "You have chosen the PS4 Controller. This item isn't available yet! Pre-Order the PS4! " << endl;
}
if (num2 == 10)
{
cout << "You have chosen the Wii U Controller. The subtotal is $145.00. " << endl;
}
2 AnswersProgramming & Design8 years agoTheta (θ) homework help?
1. If cos(-θ) = .345 find cos(θ) The answer is .345. How?
2. If sin (θ) = -0.345 find sin (-θ) The answer is .345. Also how?
Thanks in advance.
1 AnswerHomework Help8 years agoObama is a bad president?
17 AnswersGovernment8 years agoDo you close the door to the bathroom even if no one's in your house?
17 AnswersPolls & Surveys8 years agoIn one of my other posts I asked why you think a child's life is more valuable than an adult's..?
The majority of you say that a child's life is more valuable. If the majority say a child's life is more valuable, then why do we allow abortion?
Here is my related post:
4 AnswersOther - Society & Culture8 years agoCISPA is back in case you didn't know and it was passed behind closed doors. Anyone?
Why aren't we thrashing and crying out against the American government like we did with SOPA and PIPA??
3 AnswersLaw & Ethics8 years agoWhy is a child's life more valuable than an adult's?
7 AnswersOther - Society & Culture8 years agoHow in the world did CISPA pass?
It's going into effect tomorrow, 22 April 2013!
1 AnswerOther - Politics & Government8 years agoIs it a weird concept to think about that someone is losing their virginity?
Either by rape or consent?
1 AnswerOther - Society & Culture8 years agoDoesn't Joe Biden seem like the kind of guy that owns a safe full of rifles, carbines, and pistols?
I'm gonna say he has an arsenal of weapons including a .44 magnum, a Mosin Nagant, a Colt .45, and a 5-million volt taser.
6 AnswersOther - Politics & Government8 years agoWhy did we have all these technological advances during a recession?
Smartphones, tablets, better gas mileage on cars. I understand that technology advances quickly, but why did all these advances have to happen during and after the economic downturn of '07?
3 AnswersOther - Society & Culture8 years agoWhy is it harder for Asians to get into prestigious schools?
Been watching Stossel lately and this doesn't seem fair. How does the Asian stereotype of them being smarter justify the reason for it being harder for them to get into prestigious schools?
3 AnswersPrimary & Secondary Education8 years agoBattlefield storyline?
I bought Battlefield 3 last year and I don't regret it. As of right now I'm pretty dedicated to the game and plan on purchasing Battlefield 4. I have every DLC and 60 out of 63 achievements. But my question is about the story. How does the Battlefield 1 story go? And then from there transitions to BF2 and to BF3? I don't get what the plot is. Would someone mind explaining?
7 AnswersVideo & Online Games8 years ago