answersLogoWhite

0


Best Answer

STD are not created by people ! They are created by bacteria, viruses, protozoa, etc.
You can't create a sexual transmitted disease between you and you're partner. One of 2 people would have to be infected with the disease to transmit it.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Can two people create an STD?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Can gay people catch an std?

Of course.


How do write a function that receives two pointers to character strings where the function concatenates the two strings and prints the new concatenated string?

#include <iostream> #include <string> std::string* concat_print_strings(std::string* pStr1, std::string* pStr2 ) { std::string * strResult = new std::string( *pStr1 ); strResult->append( *pStr2 ); std::cout << strResult->c_str() << std::endl; return( strResult ); } int main() { std::string str1 = "This is a string."; std::string str2 = " And this is another string."; std::string* pStr = concat_print_strings( &str1, &str2 ); delete( pStr ); pStr = NULL; return( 0 ); }


What is the C plus plus plus program for the addition of two numbers?

#include<iostream> int main() { int num1, num2; std::cout << "C++ addition program" << std::endl; std::cout << "Enter a number: "; std::cin >> num1; std::cout << "Enter another number: "; std::cin >> num2; std::cout << "The sum is " << num1 + num2 << std::endl; }


Rearrange the string in alphabetical order in two dimensional character array?

Use a std::vector<std::string>> to store the strings, then call the std::vector::sort() method.


How do you create user define function in c plus plus that arrange the letter of a word in alphabetical order?

Example#include // for std::cout#include // for std::locale (required by C++ tolower)#include // for std::string#include // for std::sortbool SortPredicate( const char& c1, const char& c2){std::locale loc;return( tolower(c1,loc) < tolower(c2,loc) );}void Sort( std::string& s ){std::sort( s.begin(), s.end(), SortPredicate);}int main(){std::string str( "Hello" );std::cout


How do you write a C plus plus program to read two numbers and display the larger value?

#include&lt;iostream&gt; int main (void) { int a, b; std::cout &lt;&lt; "Enter two whole numbers:"; std::cin &gt;&gt; a &gt;&gt; b; std::cout &lt;&lt; "The largest of " &lt;&lt; a &lt;&lt; " and " &lt;&lt; b &lt;&lt; " is &lt;&lt; (a&gt;b?a:b) &lt;&lt; std::endl; }


Are STDs most common in people over 30?

STD are common in people who are sexually active... if you are sexually active at the age of 20 then you are high risk to have an STD.


How do you write a c plus plus program to read two floating point numbers and find the sum and average?

#include&lt;iostream&gt; int main() { double a, b; std::cout &lt;&lt; "Enter a number: "; std::cin &gt;&gt; a; std::cout &lt;&lt; "Enter another number: "; std::cin &gt;&gt; b; std::cout &lt;&lt; "Sum: " &lt;&lt; a + b &lt;&lt; std::endl; std::cout &lt;&lt; "Average: " &lt;&lt; (a + b) / 2 &lt;&lt; std::endl; }


What is the C plus plus program to display fname lname age and id number of 100 students and arrange their name alphabetically?

Create a class to represent a student: struct student { string fname; string lname; unsigned age; unsigned id; }; Overload operator&lt; to compare two student objects: bool operator&lt; (const student&amp; a, const student&amp; b) { return a.lname&lt;b.lname; } Overload std::ostream::operator&lt;&lt; to print a student: std::ostream&amp; operator&lt;&lt; (std::ostream&amp; os, const student&amp; s) { return os &lt;&lt; s.fname &lt;&lt; ' ' &lt;&lt; s.lname &lt;&lt; ' ' &lt;&lt; s.age &lt;&lt; ' ' &lt;&lt; s.id; } Now you can write your program: int main() { std::vector&lt;student&gt; v; for (unsigned count=0; count&lt;100;) { student s; std::cout &lt;&lt; "Enter details for student #" &lt;&lt; ++count; std::cout &lt;&lt; "First name: "; std::cin &gt;&gt; s.fname; std::cout &lt;&lt; "Last name: "; std::cin &gt;&gt; s.lname; std::cout &lt;&lt; "Age: "; std::cin &gt;&gt; s.age; std::cout &lt;&lt; "ID: "; std::cin &gt;&gt; s.id; v.push_back (s); } std::cout &lt;&lt; "Sorting..." std::sort (v.begin(), v.end()); std::cout &lt;&lt; "\n\n"; // Print students... for (auto s : v) std::cout &lt;&lt; s &lt;&lt; std::endl; }


Can the skin of the vagina rip and create sores that are painful and remain for weeks without there being a major problem?

That is an STD


How do you write sum of two hexadecimal numbers in c plus plus?

#include&lt;iostream&gt; #include&lt;queue&gt; #include&lt;stack&gt; int main() { int x = 0x1f; int y = 0xa2; std::cout.hex; std::cout &lt;&lt; "0x" &lt;&lt; std::hex &lt;&lt; x &lt;&lt; " + " &lt;&lt; "0x" &lt;&lt; std::hex &lt;&lt; y &lt;&lt; " = " &lt;&lt; "0x" &lt;&lt; std::hex &lt;&lt; x+y &lt;&lt; std::endl; }


How is STD's differ from infections?

They aren't different, they are quite literall the same thing people choose to use sti or std THERE IS NO DIFFERENCE