代码搜索:factor
找到约 6,651 项符合「factor」的源代码
代码结果 6,651
www.eeworm.com/read/233206/14163354
obj factor.obj
www.eeworm.com/read/130553/14186996
c factor.c
/*
** factor.c -- print prime factorization of a number
** Ray Gardner -- 1985 -- public domain
** Modified Feb. 1989 by Thad Smith > public domain
**
** This version takes numbers up to the limi
www.eeworm.com/read/230954/14264693
cpp factor.cpp
#include
//#ifndef WINDOWS
//#include
//#else
#include "pfwstdio.h"
//#endif
#include
#ifdef ANSIPROTO
#include
#endif
#include "constant.h"
#inclu
www.eeworm.com/read/230947/14265168
cpp factor.cpp
#include
#ifndef WINDOWS
#include
#else
#include "pfwstdio.h"
#endif
#include
#ifdef ANSIPROTO
#include
#endif
#include "constant.h"
#include "para
www.eeworm.com/read/128030/14318545
cpp factor.cpp
// factor.cpp
// calculates factorials, demonstrates FOR loop
#include
using namespace std;
int main()
{
unsigned int numb;
unsigned long fact=1;
www.eeworm.com/read/123822/14612237
c factor.c
/***一个递归算法***Created by YYF at 20041020***/
#include "myhdr.h"
int factorial(int n);
int
main()
{
int n;
int Factor;
printf("input a num please\n");
scanf("%d",n);
Factor = factorial
www.eeworm.com/read/207039/15283757
java factor.java
public class Factor
{
public static void main(String[] args)
{
int x=2;
for(int i=x;i>0;i--)
{
System.out.println(i);
}
}
}
www.eeworm.com/read/207039/15283762