LAN (Local Area Network)
<span>Basically, to be precise, Intranet is
an extension of LAN in which IP services like HTTP, TCP/IP and several other
standard protocols are added. Intranet is a private internet network that is
used to add internet like services in an internal LAN.</span>
Answer:
int main() {
int n;
cout<<"Enter the integer n"<<endl;
cin>>n;
if(n<1 || n>10)
{
while(n>10 || n<1)//taking input if the number is not within range..
{
cout<<"Enter the number again"<<endl;
cin>>n;
}
activity(n);//calling activity with the n..
}
return 0;
}
Explanation:
Above written is the main function in which a prompting an integer between 1 and 10 if it is not within range then again taking input.Then after that calling activity with n as argument.
You should structure the text first before you search for a relevant picture