Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of JChat

JChat

JChat has asked 23 questions and find answers to 0 problems.

Stats

115
EtPoint
0
Vote count
23
questions
0
answers

About

    #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!";
    }

}