#include #include void pyrmid(int); void main() { int n; cout<<"enter the number of lines that you want the pyrmid to be"; cin>>n; pyrmid(n); } void pyrmid(int n) { int stars; int loop; for(loop=0;loop