Whenever i try to run this code :
string title;
        int Choice;
        cout<<"1. Insert new term ";
        cin>>Choice;
        if (Choice==1)
        {
            getline(cin,title);
        }
the program only read the Choice and end the whole process :/ , help please :D
 
     
    