Skip to main content

Posts

Showing posts from February, 2023

Pattern opposite face triangle C++ Program

 *                   *  * *               * *  * * *        * * *  * * * * * * * *  * * *       * * *  * *            * *  *                 *  #include <iostream> using namespace std ; int main (){     for ( int i = 0 ; i < 8 ; i ++ )     {         for ( int j = 0 ; j < 8 ; j ++ )     {           if ( i < 5 )         if ( i > j || i + j > 7 )         cout << "* " ;         else         cout << "  " ;         else         {             if ( i + j < 8 || i < j + 1...

Pattern dimondHollow C++

        *        *   *      *       *    *           *  *               *    *           *      *       *        *   *          *  #include <iostream> using namespace std ; int main () {       for ( int i = 0 ; i < 9 ; i ++ )     {           if ( i < 5 ){         for ( int j = 0 ; j <= ( 2 * i + 4 - i ); j ++ )         {             if ( j == ( 4 - i ) || j == ( 2 * i + 4 - i ))             cout << "* " ;             else             cout << " ...

Pattern Dimond C++

           *        * * *      * * * * *    * * * * * * *  * * * * * * * * *    * * * * * * *      * * * * *        * * *           *  #include <iostream> using namespace std ; int main () {     for ( int i = 0 ; i < 9 ; i ++ )     {           if ( i < 5 ){         for ( int j = 0 ; j <= ( 2 * i + 4 - i ); j ++ )         {             if ( j < ( 4 - i ))             cout << "  " ;             else             cout << "* " ;         }         }                 else         {   ...

Pattern1 C++

 *     *  *   *    * *      *      * *    *   *  *     * #include <iostream> using namespace std ; int main () {   for ( int i = 0 ; i < 7 ; i ++ )   {     for ( int j = 0 ; j < 7 ; j ++ )     {         if ( i == j || ( 6 - i ) == j )         cout << "*" ;         else         cout << " " ;     }     cout << endl ;   }     return 0 ; }