代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/278388/10538717
c infsend.c
#include
#include
#include
void infsend(void)
{
unsigned char i,c,k,j;
c=0;
for(i=0;i
www.eeworm.com/read/352393/10556259
pl0 test.pl0
/* Test.PL0 */
Program abc;
Integer x,y,z;
Real a,b;
Procedure ab(Var m,n:Integer;t:Real);
Begin
t:=n+m;
If m>n then n:=m else t:=m;
While n
www.eeworm.com/read/160183/10560186
pl0 test.pl0
/* Test.PL0 */
Program abc;
Integer x,y,z;
Real a,b;
Procedure ab(Var m,n:Integer;t:Real);
Begin
t:=n+m;
If m>n then n:=m else t:=m;
While n
www.eeworm.com/read/278180/10560456
m instfreq_nonormolized.m
function [fnormhat]=instfreq_nonormolized(x,t,L,trace);
%INSTFREQ Instantaneous frequency estimation.
% [FNORMHAT,T]=INSTFREQ(X,T,L,TRACE) computes the instantaneous
% frequency of the analytic signa
www.eeworm.com/read/278099/10569962
c soundex4.c
/* +++Date last modified: 05-Jul-1997 */
/*
** Variant Soundex Algorithm (Algorithm #4), Optimized for use with Surnames
**
** Written by Joe Celko. Originally published in "The C Gazette" vol
www.eeworm.com/read/352242/10571231
cpp 1.cpp
#include
#include
#include
#include
using namespace std;
int M(double k) //此函数用于对double数求%2
{
for(;k>=2;k-=2) //k〉=2时,k=k-2
;
return (int)k;
www.eeworm.com/read/422987/10594909
txt ceshi2.txt
//下面定义保留,为简化程序,使用字符指针数组保存所有保留字。
//如果想增加保留字,可继续添加,并修改保留字数目
#define keywordSum 13
char *keyword[keywordSum]={ "begin","if","end","else","then","for","while","to","do","and","not","or","write"};
www.eeworm.com/read/277588/10618215
cpp sy5.cpp
#include
using namespace std;
void lsc(char a[],int la,char b[],int lb);
void main()
{
char a[20];
char b[20];
int i=0;
int num=0;
char c;
a[0]=' ';
i=1;
cout