+ 1
C++ pattern
print this pattern using C++ 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1 1 2 3 2 1 1 2 1 1 thanks đ
3 Answers
+ 4
Eheheheh it's simple XD:
cout << " 1 " << endl;
cout << " 121 " << endl;
cout << " 12321 " << endl;
cout << "1234321" << endl;
cout << " 12321 " << endl;
cout << " 121 " << endl;
cout << " 1 " << endl;
0
đ¶đ¶ using loop