answersLogoWhite

0

How does std enter your body?

Updated: 8/10/2023
User Avatar

Wiki User

8y ago

Best Answer

STDs are mainly caused by bacterial infections and viruses, which are the cause of most every other disease and illness. Asking how an STD starts is almost tantamount to asking how bacteria and viruses become dangerous to humans. An STD begins when a harmful bacterium species or viral strain finds a niche in the human body - usually in, but not limited to, an area that is highly active during sexual contact (like the genital tract (ie chlamydia)) or even in another body system (like Shigella's effect on the skin). Other STDs are caused by certain parasitic organisms, or even fungal infections. Some STDs can be spread through mucous, and some through saliva, but ALL are spread through sexual contact. It is possible, although improbable, that a person who has never engaged in sexual activity and never come into contact with the saliva/blood/mucous of an infected person could become the host of a newly mutated sexually-transmitted pathogen (after all, the diseases do start somewhere). However, a person should be far, far more concerned with catching an STD from another human than from getting one without human contact.

STDmatching.com is for people living with STD to find a match. Living with STD does not mean that your dating and sex life is over. Chat with person in the same condition, you are not alone.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

12y ago

When professer hock daddy's Russian turtle breeding blood spill's all over his thermus and on to his killer snapping turtles, then they screw people.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How does std enter your body?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

A c comma c plus plus program that can accept first name surname and display it?

int main() { std::string first, last; std::cout << "Enter your first name: "; std::cin >> first; std::cout << "Enter your last name: "; std::cin >> last; }


Need a c program for a plus b plus whole square?

#include<iostream> int main() { std::cout << "Enter value a: "; double a; std::cin >> a; std::cout << "Enter value b: "; double b; std::cin >> b; double sum {a+b}; std::cout << "a + b + (a + b) * (a + b) = " << sum + sum * sum << std::endl; }


How C plus plus program to implement employee directory which will let the organization to perform the functions. Insert the record of new employee?

#include<iostream> #include<vector> #include<string> struct employee { std::string forename; std::string surname; std::string department; }; struct directory { std::vector<employee> v; void add_employee (const std::string&, const std::string&, const std::string&); }; void directory::add_employee (const std::string& forename, const std::string& surname, const std::string& department) { v.push_back (employee{forename, surname, department}); } int main() { std::string forename, surname, department; std::cout << "Enter employee's forename: "; std::cin >> forename; std::cout << "Enter employee's surname: "; std::cin >> surname; std::cout << "Enter employee's department: "; std::cin >> department; add_employee (forename, surname, department); }


Write a program to input N different number and count total odd numbers incurred by the user?

#include#includeunsigned input_num(std::string prompt){unsigned num = 0;while (1){std::cout


Write a menu based program in functions to calculate string length string compare string reverse string substring string concatenation?

#include<iostream> #include<string> #include<sstream> #include<vector> #include<conio.h> // required by getch() std::string input_string (std::string prompt) { while (true) { std::string input; std::cout << prompt; std::getline (std::cin, input); if (input.size()) return input; std::cout << "Invalid input. Empty strings are not permitted.\n"; } } size_t input_unsigned (std::string prompt) { while (true) { std::string input = input_string (prompt); std::stringstream ss; ss << input; size_t s; if (ss>>s && s) return s; std::cout << "Invalid input. Values must be non-zero.\n"; } } void string_length() { std::string str = input_string ("Enter the string you wish to know the length of:\n"); std::cout << "The string is " << str.size() << " characters long.\n" << std::endl; } void string_compare() { std::pair<std::string, std::string> strings; strings.first = input_string ("Enter the first string you wish to compare:\n"); strings.second = input_string ("Enter the second string you wish to compare:\n"); int compare = strings.first.compare (strings.second); std::cout << "The result of the camprison is: " << compare << '\n' << std::endl; } void string_reverse() { std::string str = input_string ("Enter the string you wish to reverse:\n"); for (size_t f=0, r=str.size()-1; f<r; ++f, --r) { char t = str[f]; str[f] = str[r]; str[r] = t; } std::cout << "The reversed string is:\n" << str << '\n' << std::endl; } void string_substring() { std::string str = input_string ("Enter a string:\n"); size_t pos = input_unsigned ("Enter the offset of the substring:\n"); size_t len = input_unsigned ("Enter the length of the substring:\n"); std::cout << "The substring is: " << str.substr(pos,len) << '\n' << std::endl; } void string_concatenation() { std::pair<std::string, std::string> strings; strings.first = input_string ("Enter the first string you wish to concatenate:\n"); strings.second = input_string ("Enter the second string you wish to concatenate:\n"); std::string concat = strings.first + strings.second; std::cout << "The result of the concatenation is: " << concat << '\n' << std::endl; } int main() { while (true) { std::cout << "MAIN MENU\n"; std::cout << "=========\n" << std::endl; std::cout << "1 - String length\n"; std::cout << "2 - String compare\n"; std::cout << "3 - String reverse\n"; std::cout << "4 - String substring\n"; std::cout << "5 - String concatenation\n"; std::cout << "X - Exit program\n"; #pragma warning(disable : 4996) switch ((char) getch()) { case ('1'): string_length(); break; case ('2'): string_compare(); break; case ('3'): string_reverse(); break; case ('4'): string_substring(); break; case ('5'): string_concatenation(); break; case ('x'): case ('X'): return 0; } } }

Related questions

A c comma c plus plus program that can accept first name surname and display it?

int main() { std::string first, last; std::cout << "Enter your first name: "; std::cin >> first; std::cout << "Enter your last name: "; std::cin >> last; }


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; }


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

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


Need a c program for a plus b plus whole square?

#include<iostream> int main() { std::cout << "Enter value a: "; double a; std::cin >> a; std::cout << "Enter value b: "; double b; std::cin >> b; double sum {a+b}; std::cout << "a + b + (a + b) * (a + b) = " << sum + sum * sum << std::endl; }


Does Ebola count as an std?

If it can be transmitted by body fluids then in some ways it is an std


How do you write a program that allows the user to enter any number of strings that will then be encoded decoded and then displayed to the console?

#include<iostream> #include<string> #include<vector> std::string encode (const std::string&); std::string decode (const std::string&); int main () { std::vector<string> strings; std::cout<<"Enter as many strings as you like (end with an empty string)\n"; while (true) { std::string input; std::cout<<"Enter a string: "; std::getline (std::cin, input); if (input.empty()) break; strings.push_back (encode (input)); } std::cout<<"You entered the following strings:\n"; for (auto s : strings) std::cout<<decode (s)<<std::endl; } Note that it is not possible to show the implementation details of the encode and decode functions since it is not clear from the question what the purpose of these functions is.


What are the changes in breast after sex?

Sex does not change the body unless you get a STD or pregnant and then the pregnancy or STD make the body change.


How C plus plus program to implement employee directory which will let the organization to perform the functions. Insert the record of new employee?

#include<iostream> #include<vector> #include<string> struct employee { std::string forename; std::string surname; std::string department; }; struct directory { std::vector<employee> v; void add_employee (const std::string&, const std::string&, const std::string&); }; void directory::add_employee (const std::string& forename, const std::string& surname, const std::string& department) { v.push_back (employee{forename, surname, department}); } int main() { std::string forename, surname, department; std::cout << "Enter employee's forename: "; std::cin >> forename; std::cout << "Enter employee's surname: "; std::cin >> surname; std::cout << "Enter employee's department: "; std::cin >> department; add_employee (forename, surname, department); }


Are Montgomery glands an STD?

Montgomery glands are not an STD. They are a normal part of the human body.


Write a program to input N different number and count total odd numbers incurred by the user?

#include#includeunsigned input_num(std::string prompt){unsigned num = 0;while (1){std::cout


Write a menu based program in functions to calculate string length string compare string reverse string substring string concatenation?

#include<iostream> #include<string> #include<sstream> #include<vector> #include<conio.h> // required by getch() std::string input_string (std::string prompt) { while (true) { std::string input; std::cout << prompt; std::getline (std::cin, input); if (input.size()) return input; std::cout << "Invalid input. Empty strings are not permitted.\n"; } } size_t input_unsigned (std::string prompt) { while (true) { std::string input = input_string (prompt); std::stringstream ss; ss << input; size_t s; if (ss>>s && s) return s; std::cout << "Invalid input. Values must be non-zero.\n"; } } void string_length() { std::string str = input_string ("Enter the string you wish to know the length of:\n"); std::cout << "The string is " << str.size() << " characters long.\n" << std::endl; } void string_compare() { std::pair<std::string, std::string> strings; strings.first = input_string ("Enter the first string you wish to compare:\n"); strings.second = input_string ("Enter the second string you wish to compare:\n"); int compare = strings.first.compare (strings.second); std::cout << "The result of the camprison is: " << compare << '\n' << std::endl; } void string_reverse() { std::string str = input_string ("Enter the string you wish to reverse:\n"); for (size_t f=0, r=str.size()-1; f<r; ++f, --r) { char t = str[f]; str[f] = str[r]; str[r] = t; } std::cout << "The reversed string is:\n" << str << '\n' << std::endl; } void string_substring() { std::string str = input_string ("Enter a string:\n"); size_t pos = input_unsigned ("Enter the offset of the substring:\n"); size_t len = input_unsigned ("Enter the length of the substring:\n"); std::cout << "The substring is: " << str.substr(pos,len) << '\n' << std::endl; } void string_concatenation() { std::pair<std::string, std::string> strings; strings.first = input_string ("Enter the first string you wish to concatenate:\n"); strings.second = input_string ("Enter the second string you wish to concatenate:\n"); std::string concat = strings.first + strings.second; std::cout << "The result of the concatenation is: " << concat << '\n' << std::endl; } int main() { while (true) { std::cout << "MAIN MENU\n"; std::cout << "=========\n" << std::endl; std::cout << "1 - String length\n"; std::cout << "2 - String compare\n"; std::cout << "3 - String reverse\n"; std::cout << "4 - String substring\n"; std::cout << "5 - String concatenation\n"; std::cout << "X - Exit program\n"; #pragma warning(disable : 4996) switch ((char) getch()) { case ('1'): string_length(); break; case ('2'): string_compare(); break; case ('3'): string_reverse(); break; case ('4'): string_substring(); break; case ('5'): string_concatenation(); break; case ('x'): case ('X'): return 0; } } }


Write c program to enter a string it has to display with space?

#include #include using std::cin;using std::cout;using std::endl;using std::string;using std::getline;int main(){string myStr = "";cout