Ver original#include <stdio.h>#include <iostream.h>int main(){ for (int i=1;i<=4; i++){ for(int j=1;j < i*2 ; j++ ) cout <<"*"; cout<<endl; }}