Q 11 Write cout and cin statements to enter a number and then display the number entered.
Answers
Answered by
2
#include
void main( )
{
int num;
cout<<“please enter any number”;
cin>>num;
getch( );
}
void main( )
{
int num;
cout<<“please enter any number”;
cin>>num;
getch( );
}
Similar questions