代码搜索:Power
找到约 10,000 项符合「Power」的源代码
代码结果 10,000
www.eeworm.com/read/452228/7444303
pin fenpin.pin
-- Copyright (C) 1991-2005 Altera Corporation
-- Your use of Altera Corporation's design tools, logic functions
-- and other software and tools, and its AMPP partner logic
-- functions, and a
www.eeworm.com/read/452228/7444304
pin zhishi.pin
-- Copyright (C) 1991-2005 Altera Corporation
-- Your use of Altera Corporation's design tools, logic functions
-- and other software and tools, and its AMPP partner logic
-- functions, and a
www.eeworm.com/read/452228/7444309
pin second.pin
-- Copyright (C) 1991-2005 Altera Corporation
-- Your use of Altera Corporation's design tools, logic functions
-- and other software and tools, and its AMPP partner logic
-- functions, and a
www.eeworm.com/read/452228/7444675
rpt deled.fit.rpt
Fitter report for deled
Fri Jun 06 22:13:58 2008
Version 5.1 Build 176 10/26/2005 SJ Full Version
---------------------
; Table of Contents ;
---------------------
1. Legal Notice
2. Fi
www.eeworm.com/read/452228/7444680
rpt zhishi.fit.rpt
Fitter report for zhishi
Wed Jun 11 00:04:50 2008
Version 5.1 Build 176 10/26/2005 SJ Full Version
---------------------
; Table of Contents ;
---------------------
1. Legal Notice
2. F
www.eeworm.com/read/452050/7448817
c 2354339_ac_15ms_60k.c
#include
int power(int a,int b)
{
int i, tmp = 1;
for(i = 1; i
www.eeworm.com/read/452050/7449355
c 3236953_ac_63ms_304k.c
#include
#include
double c[21][21];
double p;
double cc[21];
double power(double q,int n)
{
if(n==0)
return 1.00;
if(n%2==0)
return power(q*q,n/2);
else
r
www.eeworm.com/read/452050/7449356
cc 3236958_ac_47ms_304k.cc
#include
#include
double c[21][21];
double p;
double cc[21];
double power(double q,int n)
{
if(n==0)
return 1.00;
if(n%2==0)
return power(q*q,n/2);
else
r
www.eeworm.com/read/452050/7449357
cpp 3236956_ac_157ms_200k.cpp
#include
#include
double c[21][21];
double p;
double cc[21];
double power(double q,int n)
{
if(n==0)
return 1.00;
if(n%2==0)
return power(q*q,n/2);
else
r
www.eeworm.com/read/452050/7450344
cpp 2878376_tle.cpp
#include
#include
#include
int n;
int m, k;
int matrix[11][11];
struct node
{
int mat[11][11];
};
int fai(int mm)
{
int i, nn;
nn = mm;
if(mm%2==0