To pick two choices num1 and num2 is created now you write:
cin>>num1;
cin>>num2;
You can store this in a file by using fstream file and typing
ofstream file;
file.open ("report.txt", ios::app);
4
solved Get only few value from multiple choice [closed]