码迷,mamicode.com
首页 > 其他好文 > 详细

打印n长度为n的所有数字

时间:2014-09-02 19:59:55      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:打印n位长度的所有整数

这里需要注意数字范围的问题,如果是n位数字可能超过C语言中数字的表示范围,所以采用n位数字的全排列方式进行解决,或者采用字符串表示整数的方法。

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

void rshow(char* buf,int len,int index)
{
	if(index==len)
	{
		cout<<buf<<endl;
		return;
	}

	for(int i=0;i<=9;i++)
	{
		buf[index]='0'+i;
		rshow(buf,len,index+1);
	}

	return;
}

int main(void)
{
	int n=3;
	char* buf=(char*)malloc((n+1)*sizeof(char));
	buf[n]='\0';

	rshow(buf,n,0);

	system("pause");
	return 0;
}

打印n长度为n的所有数字

标签:打印n位长度的所有整数

原文地址:http://blog.csdn.net/cjc211322/article/details/39009543

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