题解 | #牛牛的四叶玫瑰数#

牛牛的四叶玫瑰数

https://www.nowcoder.com/practice/b1ee23676ad54919b50aa1a09da1704e

#include <stdio.h>
#include <math.h>
int main()//水仙花数,各数字计算 
{
	int n, m;
	scanf("%d %d", &n, &m);

	for (int i = n; i <= m; i++)
	{
		int w = 0, temp = 0, te = i;
		while (te)
		{
			temp = te % 10;//个位
			w += pow(temp, 4);
			te /= 10;//减一位
		}

		if (w == i)
			printf("%d ", i);
	}
	return 0;
}

全部评论

相关推荐

邮小鼠:粤嵌的项目水的要死 来我们学校带过课程实习 项目名字是车机终端 实际上就是写了了个gui 还是老师把代码发给你你改改的那种
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务