码迷,mamicode.com
首页 > 编程语言 > 详细

C++ 输出方阵的上三角部分

时间:2015-01-23 11:19:45      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:

#include "stdafx.h"
#include<iostream>
using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
	int n=0;
	cout<<"Please enter a number: ";
	
	while(cin>>n)
	{
		for(int i=0;i<n;i++)//外循环--行
		{
		
			int f=i+1;
			int step=n;
			//输出行前的空格
			for(int j=0;j<i;j++)
				cout<<"\t";
<span style="white-space:pre">			</span>//输出每一行的数字和前面的空格
			for(int k=i;k<n;k++)
			{
				cout<<f<<"\t";
				f=f+step;
				step--;
			}

			cout<<endl;
	
		}
		cout<<"Please enter a number: ";
	}
	return 0;
}
效果图:
<img src="http://img.blog.csdn.net/20150123100009974" alt="" />

C++ 输出方阵的上三角部分

标签:

原文地址:http://blog.csdn.net/u010581990/article/details/43051713

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!