What's new

Hi can someone help me about this po . C++ po language for loop

Xyrrk

Eternal Poster
Established
Joined
Oct 8, 2017
Posts
666
Solutions
2
Reaction
207
Points
455
1642077826843.png



Hindi po ito assignment or quiz this is just a practice po na binigay sa amin ng prof namin I hope someone will help about this na code ko na yung kabilang phase na triangle yung space lang tsaka yung nasa right na triangle lang di ko alam paano gawin. TYIA <3

already solved thanks nalang <3
 

Attachments

Last edited:
interested ako sa it ts, mahirap po ba talaga? wala pa po akong knowledge pagdating sa coding. any tips?
 
C:
void main(){
    
    int space =1 , atPatternCount = 0 , a, enterNum ;
    printf("Enter the Number (1 - 10): ");
       scanf("%i", &enterNum);

    atPatternCount = enterNum;

       for (a = 0; a < enterNum; a++)
       {
           for (int i = 0; i < 2; i++)
           {
               for (int j = 0; j < atPatternCount; j++)
                {
                    printf("@");
                }
                if(i != 1){
                    for (int h = 0; h < space; h++)
                    {
                        printf(" ");
                    }
                }
                
           }
           space+=2;
           atPatternCount--;
          
           printf("\n");
       }
      
}
 
Back
Top