Write a C++ program that takes 2 characters (c and d), and a positive integer (n) and outputs the following
drawing of size n n made of the characters c and d, as shown below:
Enter two characters and an integer: # _ 6
#_#_#_
_#_#_#
#_#_#_
_#_#_#
#_#_#_
_#_#_#
Press any key to continue . . .
this is the question..
I did till here but I don't know how to continue
#include <iostream>
using namespace std;
int main()
{
int n;
char c, d;
cout << "Enter two characters and an integer: " << flush;
cin >> c >> d >> n;
someone plz help me..thanks...:S....