标签:源程序 system print pause src name iostream 结果 code
源程序:
#include < iostream >
using namespace std;
void print_triangle(char c, int n)
{
int i, j;
for (i = 0; i< n; i++)
{
for (j = 0; j <= i; j++)
{
cout << c;
}
cout << endl;
}
}
void main()
{
print_triangle(‘a‘, 10);
system("pause");
}
运行结果:
编写有字符型参数c和整型参数N的函数,让它显示出由字符c组成的三角形。其方式为第1行有一个字符c,第2行有2个字符c等等-简单
标签:源程序 system print pause src name iostream 结果 code
原文地址:https://www.cnblogs.com/duanqibo/p/11888155.html