Program

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

#include <iostream>

using namespace std;


int main() {
int i, j, x, y;

char plot[21][75] = {'.'};

plot[x][y]='+';

for(i=20; i>-1; i--)

for(j=0; j<75; j++)

plot[i][j]='.';

plot[x][y]='+';

cout<<plot[i][j]; }

cout<<"\n";
return 0;
}
}

You might also like