Ver Mensaje Individual
  #8 (permalink)  
Antiguo 14/09/2012, 17:19
Avatar de neysitc
neysitc
 
Fecha de Ingreso: noviembre-2010
Ubicación: alert('Peru')
Mensajes: 47
Antigüedad: 14 años
Puntos: 5
Respuesta: Hacer triangulo solo con for

Solamente así:


Código C++:
Ver original
  1. #include <stdio.h>
  2. #include <iostream.h>
  3. int main(){
  4.     for (int i=1;i<=4; i++){
  5.         for(int j=1;j < i*2 ; j++ )
  6.             cout <<"*";
  7.                 cout<<endl;
  8.     }
  9. }

Y listo (Y)