JChat

628
reputation
10
27
    #include<iostream.h>
    #include<conio.h>

    void main()
    {
    int choice;
    cout<<"Do you you want to know more about me\n 1. Yes \n2. No?";
    cin>>choice;
    if(choice ==1)
    {
    cout<<"I am an avid learner, programmer, researcher, writer and Electronics and Communication Engineer.";
    }
    else
    {
    cout<<"So you don't want to know more about me? It's alright. Stackoverflow is full of many interesting profiles, and I am a budding computer scientist, so nothing to lose!";
    }

}