0
How to create a menu c++
Needs to create a menu using do and if
1 Resposta
+ 8
do
{
		cout << "Print menu here";
		cin >> var ;
		if(condition) 
		{
				.... 
		} 
		else if(condition) 
		{
				.... 
		} 
		else
		{
				.... 
		} 
}while (condition) ;



