Computer Science, asked by yaswanthvuppalapati, 4 months ago

write a program to print ****** _***_
__*__​

Answers

Answered by mwvwaqas88
0

Answer:

#include <iostream>

using namespace std;

int main()

{

string a = "******_***___*___";

cout << a << endl;

return 0;

}

Explanation:

This program is used for just this expression not for making shapes like triangle.  

Similar questions