hi everyone ,,,
i have done this coding in C++, i want to change it from pseudocode to flow chart,,,
here is the coding:
int main(void)
{ int a, b, b2, a2, b3, b4;
{for (a=4; a>=1; a--)
{ for (b=1; b<=a; b++)
{
cout<<a;
}
for (b2=1; b2<=a; b2++)
{
cout<<"*";
cout<<endl;
}
for (a2=2; a2<=4; a2++)
{ for (b3=1; b3<=a2; b3++)
{
cout<<a2;
}
{ for (b4=1; b4<=a2; b4++)
{
cout<<"*";
}
return 0;