代码搜索结果
找到约 25,001 项符合
Power 的代码
munum.c
/* munum.c按用户序号修改用户信息*/
#include "stdio.h"
void ModifyByUserNumber()
{
int i,j,k;
long modnum;
/*输入各项修改后信息*/
long Number;
char Name[20];
char ps[8];
int power
ex3-4.c
#include
main() {
int power(int x, int n);
int a, b, c;
printf("please input X and n: \n");
scanf("%d %d",&a, &b);
c=power(a, b);
printf("\
ex3-1.c
int power(x, n)
int x, n;
{
int i, p;
p=1;
for(i=1; i
ex22.c
#include
main() { /* 主函数体 */
int x, n, p, power(int x, int n);
printf("caculate X to the power of N\n please input X and N ? ");
tst_pow.c
#include
#include /* for printf */
void tst_pow (void) {
float base;
float power;
float y;
base = 2.0;
power = 8.0;
y = pow (base, power);
nrf401.h
typedef unsigned char uchar;
typedef unsigned int uint;
sbit CSA=P1^2; //0:433.92MHz 1:434.33MHz
sbit PWR_UPA=P1^6; //0:POWER DOWN 1:POWER UP
sbit TXENA=P1^7; //0:RX 1:TX
sbit DIN=P3^1;
power.c
#include
#include "..\inc\44b.h"
#include "..\inc\44blib.h"
#include "..\inc\def.h"
#include "..\inc\power.h"
#include "..\inc\rtc.h"
#define FIN 4000000
static void __irq SLWEint
power.c
/*****************************************
NAME: power.c
DESC: SLOW,HOLD mode test
HISTORY:
03.23.2002:purnnamu: first release for 2410
*****************************************/
#in
pbuilder.txt
*** Calling WSC from Power Builder ***
We do not use the Power Builder compilers, although we have several
customers that do. To use WSC in Power Builder:
1. Install the WSC library in the Pow
powersin.m
function s = powersin(x)
%POWERSIN Power series for sin(x).
% y = POWERSIN(x) tries to compute sin(x) from its power series.
s = 0;
t = x;
n = 1;
while s+t ~= s;
s = s + t;
t = -x.^2/(