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

整数倒置和求水仙花数

时间:2019-07-28 13:30:33      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:数据   ret   水仙花数   ever   长度   print   getc   tar   void   

 

 

#include<stdio.h>
#include<stdlib.h>
void numReverse(int num);
void numReverseWithoutArr(int num);
void main(){
	numReverse(123459);
	getchar();
}
void shuiXian(){
	//求水仙花数(一个三位数,其各位数字的立方和等于该数本身)
	int num, f, s, t;
	for (num = 100; num <= 999; num++){
		f = num % 10;
		s = num % 10 / 10;
		t = s / 100;
		if (num == f*f*f + s*s*s + t*t*t){
			printf("%d,%d,%d,%d\n", num, f, s, t);
		}
	}
}
int get10(int n ){ //获取n*10的数
	int res = 1;
	for (int i = 0; i < n; i++){
		res *= 10;
	}
	return res;
}
void numReverse(int num){ //整数倒置, 用str数组暂存数据
	int str[10];
	int i = 0;
	int length; //变化后的数组长度
	int res = 0;
	int j = 0;

	for (;num;i++){
		str[i] = num % 10;
		num /= 10;
		
	}
	length = i; 
	
	while (j < length){
		res += str[j] *get10(length-j-1);
		j++;
	}
	printf("%d", res);
}

void numReverseWithoutArr(int num){ //整数倒置, 不用str数组暂存数据
	//123
	int res = 0;
	for (int i = 0;num; i++){
		res = num % 10 *get10(i-1);
		num /= 10;
	}
	printf("%d", res);
}

 

整数倒置和求水仙花数

标签:数据   ret   水仙花数   ever   长度   print   getc   tar   void   

原文地址:https://www.cnblogs.com/luoxuw/p/11258468.html

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