couple random facts!!!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <iostream>

using namespace std;

int main()
{
    cout << "The CDC (center for disease control) say's 1 in 5 adults have genital herpes.\n\n";
    cout << "And we're worried about the swine flu?\n\n";
    cout << "Six people in washington have swine flu.\n\n";
    cout << "You're neighbor might have herpes.\n\n";
    cout << "What do you think about that?\n\n";
    
    cin.ignore();
    
    return 0;
}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <iostream>
using namespace std;
 

int main() 
{  

  cout<<" I think we should get away from those people who just came from mexico , they can have these kind of virus.";

cin.ignore();

return 0;

}
Last edited on
Topic archived. No new replies allowed.