代码搜索结果

找到约 10,000 项符合 Power 的代码

ch03.02.c

// #include #include /** ** 2 raised to the power of 10: 1024 **/ int main() { int value = 2; int pow = 10; cout

pwm.pin

-- Copyright (C) 1991-2006 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

segment7.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,

stmch1.fit.rpt

Fitter report for stmch1 Fri Jan 04 17:22:03 2008 Version 5.0 Build 148 04/26/2005 SJ Full Version --------------------- ; Table of Contents ; --------------------- 1. Legal Notice 2. F

fifo.pin

-- Copyright (C) 1991-2007 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

de2_synthesizer.pin

-- Copyright (C) 1991-2006 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

xt4-16file1.cpp

#include using namespace std; int a; int main() {extern int power(int); int b=3,c,d,m; coutm; c=a*b; cout

hw1.pin

-- Copyright (C) 1991-2009 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

3169826_ac_250ms_148k.cpp

#include __int64 m; __int64 power(__int64 a,__int64 b) { if(b==0) return 1; if(b%2==0) return power((a*a)%m,b/2)%m; else return ((a%m)*power(a,b-1))%m; } int main()