一个整形十进制数值存放在数组中的形式

以下为代码

#include "stdafx.h"
#include<iostream>
using namespace std;
#define SIZE 1000
void main()
{
	int A;
	void InterPutInAarry(int N);
	cout<<"请输入整数A:";
	cin>>A;
	InterPutInAarry(A);
}

void InterPutInAarry(int N)
{
	int Integer;
	int tempvalue;
	int i=0,j,m,size;
	int tempArray[SIZE];
	Integer=N;
	/*
	将个位放在数组第一位,十位放在数组第二位……
	原数据为123456,经while循环变成了654321
	*/
	while(Integer!=0)//
	{
		tempArray[i]=Integer%10;
		Integer=Integer/10;
		i++;
	}
	/*
     将数组中的元素再逆序排列,即654321变成123456
	*/
	size=i;
	m=(size-1)/2;
	for(i=0;i<=m;i++)
	{
	  j=size-i-1;
      tempvalue=tempArray[i];
	  tempArray[i]=tempArray[j];
	  tempArray[j]=tempvalue;
	}
	printf("整数A在数组中存放的形式为:{");
	for(i=0;i<size;i++)
	 {   
		 if(i!=size-1)
		   printf("%d,",tempArray[i]);
		 else
		   printf("%d",tempArray[i]);
	}
	printf("}");
	printf("\n");
}

运行结果如下:


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值