Find all factorial numbers less than or equal…
2018-06-17 21:45:23来源:未知 阅读 ()
A number N is called a factorial number if it is the factorial of a positive integer. For example, the first few factorial numbers are 1, 2, 6, 24, 120, …
Given a number N, the task is to print all factorial numbers smaller than or equal to N.
Input:
The first line of input contains an integer T denoting the number of test cases. Then T test cases follow. Each test case contains a number N as input.
Output:
For each test case, print all factorial numbers smaller than or equal to N in new line.
Constraints:
1<=T<=100
1<=N<=1018
Example:
Input:
2
2
6
Output:
1 2
1 2 6
下面是我的代码实现:
#include <stdio.h> #include <stdlib.h> int main() { int num,i,mul=1; scanf("%d",&num); int *NN=(int *)malloc(sizeof(int)*num); for(i=0;i<num;i++) scanf("%d",&NN[i]); long long *result=(long long *)malloc(sizeof(long long)*20); for(i=1;i<20;i++) //先讲符合条件的结果保存到数组result中 { mul=mul*i; result[i-1]=mul; } for(i=0;i<num;i++) { int j; for(j=0;j<20;j++) { if(NN[i]>=result[j]) { printf("%d ",result[j]); } else break; } printf("\n"); } return 0; }
OK,如果有问题,请留言。
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- AtCoder Grand Contest 043--A - Range Flip Find Route 2020-03-22
- CF1244C The Football Season 2019-10-16
- C++ 中的new、malloc、namespace 2019-05-22
- D - Dice Game (BFS) 2019-02-27
- 259 [LeetCode] 3Sum Smaller 三数之和较小值 2019-02-25
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash