用二重循环打印以下图行 1 12 123 1234 12345
展开全部
#include <iostream>
using namespace std;
int main(void)
{
for(int row = 1; row < 6; row++)
{
for(int col = 1; col <= row; col++)
{
cout << col;
}
cout << " "; //这个里面是空格
}
return 0;
}
using namespace std;
int main(void)
{
for(int row = 1; row < 6; row++)
{
for(int col = 1; col <= row; col++)
{
cout << col;
}
cout << " "; //这个里面是空格
}
return 0;
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
。。。。。。。。。。。。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询