Ver original#include <stdio.h> int main(){ int i; int j; for(i=7;i>=1;i--){ for(j=1;j<=i;j++){ printf("%c",'*'); } printf("\n"); } return 0;}