代码搜索:移相法

找到约 10,000 项符合「移相法」的源代码

代码结果 10,000
www.eeworm.com/read/249696/12479763

txt [c函数之f].txt

函数名: fabs 功 能: 返回浮点数的绝对值 用 法: double fabs(double x); 程序例: #include #include int main(void) { float number = -1234.0; printf("number: %f absolute value: %f\n"
www.eeworm.com/read/249696/12479776

txt c函数之i.txt

函数名: imagesize 功 能: 返回保存位图像所需的字节数 用 法: unsigned far imagesize(int left, int top, int right, int bottom); 程序例: #include #include #include #include
www.eeworm.com/read/249696/12479797

txt [c函数之d].txt

函数名: delay 功 能: 将程序的执行暂停一段时间(毫秒) 用 法: void delay(unsigned milliseconds); 程序例: /* Emits a 440-Hz tone for 500 milliseconds */ #include int main(void) { sound(440); delay(500
www.eeworm.com/read/249696/12479803

txt c函数之w.txt

函数名: wherex 功 能: 返回窗口内水平光标位置 用 法: int wherex(void); 程序例: #include int main(void) { clrscr(); gotoxy(10,10); cprintf("Current location is X: %d Y: %d\r\n", wherex(), w
www.eeworm.com/read/249696/12479818

txt c函数之l.txt

函数名: labs 功 能: 取长整型绝对值 用 法: long labs(long n); 程序例: #include #include int main(void) { long result; long x = -12345678L; result= labs(x); printf("numbe
www.eeworm.com/read/249696/12479824

txt c函数之q.txt

函数名: qsort 功 能: 使用快速排序例程进行排序 用 法: void qsort(void *base, int nelem, int width, int (*fcmp)()); 程序例: #include #include #include int sort_function( con
www.eeworm.com/read/249069/12524746

txt 例5.3.txt

例5.3 编写程序,用起泡法对10个数排序(按由小到大顺序)。 #include using namespace std; int main( ) { int a[11]; int i,j,t; cout
www.eeworm.com/read/248079/12602824

c onedim.c

/* 使用选择法排序 */ # include void main() { int i, j, min, temp; /* 定义一个整型得一维数组 */ int array[10]; /* 输入数据 */ printf("Please input ten integer: \n"); for(i=0; i
www.eeworm.com/read/247668/12634488

cpp p4-176.cpp

#include #include //显示数组的函数模板 template void arr_put(T arr[],int size) { for (int i=0 ;i
www.eeworm.com/read/135877/13890372

cpp ode_fraction.cpp

//ODE_Fraction.cpp 积分一步连分式法 #include //输入输出流头文件 #include "OrdinaryDifferentialEguation.h" //求解常微分方程(组)头文件 using namespace std; //名字空间 void main(void) { double dy[2]