answersLogoWhite

0


Best Answer

No, but it certainly won't get better unless you both do something about it. Otherwise, you would be likely to simply reinfect each other.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Can an STD get worse if both partners have it?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What STD need both partners to be tested so there is no recurrence?

All of them.


Is there a greater risk for women to develop diseases that are not STD's from having multiple male sexual partners than for a Man to have multiple female sexual partners?

No because you asked " is there a greater risk for women to develop diseases that are NOT STD's" You are not going to get NON STD's from having sex any more than a man would provided your immune systems are both healthy and you have the same exposure rates.


Can you swallow your own semen if you have an STD?

Well, it's your own semen and you have STD. It won't makes you get worse since you produce it yourself...


If you have had a STD for 4years what would happen to you or your body?

It depends on the STD. All diseases usually get worse as time goes on, seek medical treatment.


What happens if your pregnant and you swallow your partners semen and he has a STD?

You can get it too. Depending on which one it is it can affect the baby or not. Get tested.


What will happen if both partners ejaculate at the same time?

Both partners will be very happy.


Blister on clitorus and a strong odor from vagina?

If you have a blister on your clitoris with a strong odor you may have an STD like herpes. You will need to see your doctor as soon as possible to start treatment. Most STD's can be treated. Also be sure to tell sexual partners if an STD is the source.


What happens when a STD is not treated?

there are several things that could happan if you ignor an std,firstly you could become ill ,even without any symptoms and secondly your body could get worse


What is nested if in c plus plus?

A nested if is simply if statement within the body of another if statement. For example: int x = 1; int y = 1; if( !x ) { if( !y ) std::cout << "both x and y are zero" << std::endl; else std::cout << "x is zero but y is not" << std::endl; } else { if( !y ) std::cout << "x is not zero but y is zero" << std::endl; else std::cout << "neither x nor y are zero" << std::endl; } The above is essentially the same as saying: if( !x && !y ) std::cout << "both x and y are zero" << std::endl; else if( !x && y ) std::cout << "x is zero but y is not" << std::endl; else if( x && !y ) std::cout << "x is not zero but y is zero" << std::endl; else std::cout << "neither x nor y are zero" << std::endl; However, the nested if format is quicker to execute because both x and y are evaluated once and once only, whereas the latter needs to evaluate both x and y continually until a matching condition is found.


Are phelps and lochte partners?

No, both are heterosexuals.


What is the definition of symbiotic relationship?

the relationship benefits both species who cooperate in it


When writing code what can be nested for statement or if statement or both?

Both. for (int x=0; x<10; ++x) { // outer loop for (int y=0; y<10; ++y) { // nested loop std::cout << x*y << '\t'; } // end nested loop std::cout << std::endl; } // end outer loop std::cout << std::endl; void f(bool x, bool y) { if (x==y) { if (x) { std::cout << "x and y are both true\n"; } else { std::cout << "x and y are both false\n"; } } else { if (x) { std::cout << "Only x is true\n" } else { std::cout << "Only y is true\n" } } } Note that the nested if within the else clause of the outer if can also be written as an else if statement: void f(bool x, bool y) { if (x==y) { if (x) { std::cout << "x and y are both true\n"; } else { std::cout << "x and y are both false\n"; } } else if (x) { std::cout << "Only x is true\n" } else { std::cout << "Only y is true\n" } }