this worked fine:
#include<iostre am>
#include<conio. h>
using namespace std;
int main(){
for(int i=0;i<=8;i++){
if(i==0 || i==8){
for(int j=0;j<=8;j++)
cout<<("*");
}
else
{
for(int k=0;k<=8;k++)
{
if(k==0 || k==8)
cout<<"*";
else
...
Leave a comment: