代码搜索:Power

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

代码结果 10,000
www.eeworm.com/read/461196/7232093

java soj3104大数三维dp.java

import java.util.*; import java.math.BigInteger; public class Main { public static void main(String []args) { Scanner an = new Scanner(System.in); int [][]num = new in
www.eeworm.com/read/460667/7243945

rpt paddr.fit.rpt

Fitter report for paddr Mon Apr 06 16:43:13 2009 Quartus II Version 8.1 Build 163 10/28/2008 SJ Full Version --------------------- ; Table of Contents ; --------------------- 1. Legal Noti
www.eeworm.com/read/460667/7243952

pin paddr.pin

-- Copyright (C) 1991-2008 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/460614/7245521

pin top.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
www.eeworm.com/read/460331/7253717

pin 872.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
www.eeworm.com/read/460295/7254094

pin songer.pin

-- Copyright (C) 1991-2004 Altera Corporation -- Any megafunction design, and related netlist (encrypted or decrypted), -- support information, device programming or simulation file, and a
www.eeworm.com/read/459928/7262110

h t3.h

/* This is a test for power: rand */ #define NX 32 #define FNAME "t3" #define MAXERROR 10 DATA x[NX] ={ 921, -551, 218, -29, 801, 536, -90, -987, 658, -114, 236, 597, 863, 487, -6
www.eeworm.com/read/459928/7262111

h t1.h

/* This is a test for power: tst1 */ #define NX 2 #define FNAME "t1" #define MAXERROR 10 DATA x[NX] ={ 3276, 6553, }; LDATA rtest = 107374182; LDATA r;
www.eeworm.com/read/459928/7262119

h t2.h

/* This is a test for power: ones */ #define NX 16 #define FNAME "t2" #define MAXERROR 10 DATA x[NX] ={ 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047,
www.eeworm.com/read/459407/7275794

txt 17-5.txt

function power(a,b:integer):integer; begin if b=1 then power:=a else power:=a*power(a,b-1) end; function fac(x:integer):integer; var i:integer; j:integer; begi