Question #25809

HAS TO BE IN C NOT C++ Write a program that displays a square box with “@” whose side is specified by a variable “side”. The value of “side” will be input from the user of your program. (side>2)

For example, if side is 4, the program displays

@@@@

@ @

@ @

@@@@

Expert's answer

# include<iostream.h>
# include<conio.h>

int i,k,n;

void main(){
cout<<"enter a side: ";
cin>>n;
for (i=1;i<=n;i++) cout<<"@";
cout<<"
";
for (i=1;i<=n-2;i++){
cout<<"@";
for (k=1;k<=n-2;k++) cout<<" ";
cout<<"@";
cout<<"
";
}
for (i=1;i<=n;i++) cout<<"@";
cout<<"
";
}
LATEST TUTORIALS
APPROVED BY CLIENTS