Como Hacer Un Triangulo En C++
Enviado por JhLawliet • 4 de Diciembre de 2014 • 971 Palabras (4 Páginas) • 270 Visitas
#include<iostream>
using namespace std;
int main()
{
int numero;
int f,c;
cout<<"ingrese el numero: "<<endl;
cin>>numero;
for(f=1;f<=numero;f++)
{
for(c=1;c<=(numero-f);c++)
{
cout<<" ";
}
for(c=1;c<=(f*2-1);c++)
{
cout<<"*";
}
cout<<endl;
}
cout<<endl;
cout<<endl;
system("pause");
return 0;
}
...