代码搜索:while

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

代码结果 10,000
www.eeworm.com/read/333417/12683792

m instfreq.m

function [fnormhat,t]=instfreq(x,t,L,trace); %INSTFREQ Instantaneous frequency estimation. % [FNORMHAT,T]=INSTFREQ(X,T,L,TRACE) computes the instantaneous % frequency of the analytic signal X at time
www.eeworm.com/read/333254/12693339

cpp textin1.cpp

// textin1.cpp -- reading chars with a while loop #include int main() { using namespace std; char ch; int count = 0; // use basic input cout
www.eeworm.com/read/246960/12695553

c mystring.c

//********************************************************************************** //杨屹 2002/08/20 第一版 //字符串操作函数 //联系方法:gdtyy@ri.gdt.com.cn(2003/07/31以前有效) //******************************
www.eeworm.com/read/246953/12695840

c ex19.c

#include main() { int a, b, c, d, i; for(a=1; a
www.eeworm.com/read/246953/12695852

c ex5.c

#include main() { int a, b; unsigned int x, y; a = b = 0xaa55; x = y = 0xaa55; printf("\n a=%4x b=%4x x=%4x y=%4x",a,b,x,y); a = a
www.eeworm.com/read/246953/12695855

c ex9.c

#include main() { int i; int *int_ptr; int_ptr = &i; *int_ptr = 5; printf("\n i = %d",i); while(1); }
www.eeworm.com/read/246953/12695859

c ex2.c

#include main() { int x, y, z; printf("input data x, y ? \n"); scanf("%d %d",&x,&y); printf("\n x y x=y x!=y x==y"); printf(
www.eeworm.com/read/246953/12695860

c ex18.c

#include main() { int i, s=0; i=1; /* 设置循环初值 */ for ( ; i
www.eeworm.com/read/246953/12695866

c ex16.c

#include main() { int i, s=0; i=1; do { /* 复合语句循环体 */ s=s+i; i++; } /* 循环体结束 */
www.eeworm.com/read/246953/12695868

c ex3.c

#include main() { int x, y, z; printf("input data x, y ? \n"); scanf("%d %d",&x,&y); printf("\n x y !x x||y x&&y"); printf("\n%5d