answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: Can i smoke marijuana while on antibiotics for a std?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What STD are curable with antibiotics?

gonorrhea


What are some examples of loops in C plus plus?

The following example demonstrates all 4 loop structures in C++. #include<iostream> int main() { int i; std::cout<<"For loop...\n"<<std::endl; for(i=0; i<10; ++i) std::cout<<i; std::cout<<'\n'<<std::endl; std::cout<<"While loop...\n"<<std::endl; i=0; while(i<10) std::cout<<i++; std::cout<<'\n'<<std::endl; std::cout<<"Do-while loop...\n"<<std::endl; i=0; do { std::cout<<i; }while( ++i<10 ); std::cout<<'\n'<<std::endl; std::cout<<"Goto loop...\n"<<std::endl; i=0; again: std::cout<<i; if(++i<10) goto again; std::cout<<'\n'<<std::endl; } Output: For loop... 0123456789 While loop... 0123456789 Do-while loop... 0123456789 Goto loop... 0123456789


How do you print 1 to 100 in c without using loop condition?

If you mean you cannot use a for loop, then use a while loop: int i=0 while( i++ < 100 ) std::cout << i << " "; std::cout << std::endl; Or a do-while loop: int i=0; do std::cout << ++i << " "; while( i<100 ); std::cout << std::endl; If these are not allowed either, use a procedural loop: int i=0; again: std::cout << ++i << " "; if( i<100 ) goto again; std::cout << std::endl; If even that is not allowed, then the only option is to hard-wire: std::cout << 1 << " " << 2 << " " << [etc] << 99 << " " << 100 << std::endl; It does seem a pointless exercise when a for loop exists specifically for counting iterations like this: for( int i=1; i<=100; ++i ) std::cout << i << " "; std::cout << std::endl;


What makes a Virginia smell like raw fish?

It is usually the STD trichomoniasis; go to the doctor and get antibiotics to get rid of the infection.


Why is chlamydia considered an STD if it is curable?

"STD" describes how you get chlamydia. It is not a descriptor of whether or not it's curable.


Why would my husband hide that he is taking antibiotics from me The pills were in a non marked pill box I looked them up they were Doxycycline I'm mainly concerned why he would be hiding this?

It sounds like he may have a std, due to the type of antibiotics he is taking.


C plus plus program for searching a word from text file?

#include<iostream> #include<fstream> #include<vector> #include<string> std::string get_input_file() { while (true) { std::cout << "Enter the input file name: "; std::string filename; std::getline (std::cin, filename); std::ifstream file (filename); if (file.is_open()) { file.close(); return filename; } std::cerr << "The file could not be opened.\n" << std::endl; } } std::string get_search_word() { while (true) { std::cout << "Enter the word to search for: "; std::string search; std::cin >> search; if (search.size()) return search; std::cerr << "The search word cannot be an empty string.\n" << std::endl; } } std::vector<size_t> get_offsets(const std::string& filename, const std::string& search) { std::vector<size_t> offsets; std::ifstream file (filename); if (!file.is_open()) throw std::exception("The file could not be opened."); size_t offset = 0; while (!file.eof()) { size_t pos = 0; char c; while (!file.read(&c, 1).eof() && c!=search[pos]) ++offset; while (pos!=search.size()-1 && !file.read(&c, 1).eof() && c==search[++pos]); if (pos==search.size()-1 && c==search[pos]) offsets.push_back (offset); offset += pos; pos = 0; } file.close(); return offsets; } int main() { std::cout << "Word Search\n" << std::endl; std::string filename = get_input_file(); std::string search = get_search_word(); std::vector<size_t> offsets = get_offsets (filename, search); std::cout << "The word was found " << offsets.size() << " time" << (offsets.size()==1?"":"s") << ".\n" << std::endl; if (offsets.size()) { std::cout << "Offsets:\n"; for (auto off : offsets) std::cout << off << std::endl; } }


What common bacterial STD is susceptible to many antibiotics but can also cause serious infections of the eye in developing countries?

Chlamydia trachomatis meets that description.


How many blocks on a pallet?

6x8x16 has 120 mixed std and bb while 8x8x16 has 90 all std or bb and 12x8x16 has 60 all std or bb and 16x8x16 has 45 all std or bb. Hope that helps


Turbo C plus plus program to generate addition table from 1 to 10?

#include<iostream> int main() { int x=0; while( x++<10 ) { int y=0; while( y++<10 ) { std::cout<<std::setw(3)<<x+y; } std::cout<<std::endl; } }


Everyonce in a while vagina will burn and itch and ocasinally when wipe there will be tiny spots of blood also it can will smell a bit and im not having sex or anything so it cant be an std what isit?

It's a Urinary track infection. It's like a virus that you can get rid of with Antibiotics.


How many cement blocks on a pallet?

6x8x16 has 120 mixed std and bb while 8x8x16 has 90 all std or bb and 12x8x16 has 60 all std or bb and 16x8x16 has 45 all std or bb. Hope that helps