Computer Science, asked by SayanK123, 1 year ago

Write the program in C++.

Attachments:

Answers

Answered by dmjn
0

Answer:

#include <iostream>

using namespase std;

int main(){

cout<<"****************************<<endl;

return 0;

}

Explanation:

Answered by Steph0303
2

Answer:

Since the given question contains just a pattern of symbols, it is usually executed by printing them as an output.

Therefore the code would be as follows:

__________

#include <iostream>

using namespace std;

int main() {

   cout << "**********" << endl;

   cout << "****  ****" << endl;

   cout << "***    ***" << endl;

   cout << "**      **" << endl;

   cout << "*        *" << endl;

   cout << "**********" << endl;

   cout << "**      **" << endl;

   cout << "***    ***" << endl;

   cout << "****  ****" << endl;

   cout << "**********" << endl;

   

return 0;

}

__________

Please refer to the attachment for the output screen.

Attachments:
Similar questions