代码搜索:factor
找到约 6,651 项符合「factor」的源代码
代码结果 6,651
www.eeworm.com/read/295093/8187433
cpp factor.cpp
#include
#include
#include
class Factor
{
public:
Factor()
{
theStoreList=0;
}
~Factor()
{
if(theStoreList!=0)
{
delete[] theStoreList;
www.eeworm.com/read/295093/8187435
plg factor.plg
Build Log
--------------------Configuration: factor - Win32 Debug--------------------
Command Lines
Results
factor.exe - 0 erro
www.eeworm.com/read/295093/8187436
opt factor.opt
www.eeworm.com/read/295093/8187438
dsw factor.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/192780/8272782
o factor.o
www.eeworm.com/read/192780/8272828
h factor.h
#ifndef FACTOR_H
#define FACTOR_H
#include
#include
#include
#include
#include
#include
#include
#include
www.eeworm.com/read/192780/8272842
cpp factor.cpp
#include "factor.h"
#include
#include
#include
#include
#include
#include
#include
#include
#inclu
www.eeworm.com/read/292920/8323989
c factor.c
// factor.c -- uses loops and recursion to calculate factorials
#include
long fact(int n);
long rfact(int n);
int main(void)
{
int num;
printf("This program calculates facto
www.eeworm.com/read/173932/9629732
m factor.m
function [val] = factor(n)
% Compute the factorial of n using logarithms to avoid overflow.
format long
n = n + 9.0;
n2 = n * n;
temp = (n-1) * log(n) - n + log(sqrt(2.0 * pi * n)) ...
+ ((1.