Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
1.3 kB
4
Indexable
Never
#include <stdio.h>

int main(void) {
int L, C, n;
n = 4;
  
  printf("Estrelas em C: Utilize apenas o printf (\"X \" e \" \")\n\n");
  printf("Digite um número: ");
  scanf("%d", &n);

  printf("\n\nExemplo 2\n\n");
  for (L=0; L<n; L++){
    for (C=0; C<n; C++){
      printf("* ");
    }
    printf("\n");
  }

  printf("\n\nExemplo 3\n\n");
  for (L=0; L<n; L++){
    for (C=0; C<n; C++){
    if (L>=C)
      printf("* ");
    else
      printf(" ");
    }
    printf("\n");
  }

  printf("\n\nExemplo 4\n\n");
  for (L=0; L<n; L++){
    for (C=0; C<n; C++){
    if (L<=C)
      printf("* ");
    else
      printf("  ");
    }
    printf("\n");
  }
  
  printf("\n\nExemplo 5\n\n");
    for (L=0; L<n; L++){
      for (C=0; C<n; C++){
        if (L+C >= n-1){
          printf("* ");
        }
        else{
          printf("  ");
        }
      }
      printf("\n");
    }
  
  printf("\n\nExemplo 6\n\n");
  for (L=0; L<n; L++){
    for (C=0; C<n; C++){
    if (L + C <= n-1)
      printf("* ");
    else
      printf(" ");
    }
    printf("\n");
  }

  printf("\n\nExemplo 7\n\n");
  for (L=0; L<n; L++){
    for (C=0; C<(n*2 -1); C++){
    if ((L + C >= 3) ^ (C >= n+L))
      printf("* ");
    else
      printf("  ");
    }
    printf("\n");
  }
  
  
  return 0;
}