编写程序,用循环语句打印如下图案。 5
要求所有“*”号都有用单条语句cout<<'*';所有空格都用cout<<'';回车用cout<<endl;来打印。***************************...
要求所有“*”号都有用单条语句cout<<'*';所有空格都用cout<<' ';回车用cout<<endl;来打印。
*
***
*****
*******
*********
***********
*************
***************
***************** 展开
*
***
*****
*******
*********
***********
*************
***************
***************** 展开
展开全部
int n=9;
for(int i=0;i<n;i++) {
for(int j=1;j<n;j++) {
for(int k=0;k<i+j;k++)
cout<<'*'; }
cout'endl'; }
没调过,试试看
for(int i=0;i<n;i++) {
for(int j=1;j<n;j++) {
for(int k=0;k<i+j;k++)
cout<<'*'; }
cout'endl'; }
没调过,试试看
追问
请将完整编程打出,我等下要考试啊啊啊
追答
#include
using namespace std;
int main() {
int n=9; //要输出的行数
for(int i=0;i<n;i++)
{
for(int j=1;j<n;j++)
{
for(int k=0;k<i+j;k++)
cout<<'*';
}
cout'endl';
}
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询