#webkul pattern program round 1 #pattern runs for odd number like min 3 , 5, 7 etc #here is ther pattern #for n==3 * * ** ** ***@@@*** @@@ @@@ *** * #for n==5 * * ** ** *** *** **** **** *****@@@@@***** @@@@@ @@@@@ @@@@@ @@@@@ ***** *** * #and so on for n==7..... #here is the program #include using namespace std; using std::cout; using std::cin; using std::endl; int main(){ int n=3; // 1st part for(int i=0;i