代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/292510/7110994
c 2440lib.c
//===================================================================
// File Name : 2440lib.c
// Function : S3C2440 PLL,Uart, LED, Port Init
// Date : March 20, 2002
// Version : 0.0
//
www.eeworm.com/read/356730/7113408
c lesson6_1.c
#include
sbit csda=P3^2;
sbit wr=P3^6;
void main()
{
csda=0;
wr=0;
P0=0;
while(1);
}
www.eeworm.com/read/189342/7115098
c no_cont.c
#include
void main()
{
int counter;
printf("\nEven values\n");
for (counter = 1; counter
www.eeworm.com/read/189342/7115118
c chrcnt.c
int chrcnt(const char *string, int letter)
{
int count = 0;
while (*string)
if (*string == letter)
count++;
return(count);
}
www.eeworm.com/read/383268/7119638
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/421564/7124049
c 2410lib.c
//===================================================================
// File Name : 2410lib.c
// Function : S3C2410 PLL,Uart, LED, Port Init
// Program : Shin, On Pil (SOP)
// Date : Marc
www.eeworm.com/read/125142/7126641
c adler32.c
/* adler32.c -- compute the Adler-32 checksum of a data stream
* Copyright (C) 1995-2003 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
*/
/* @(#) $Id$ */
www.eeworm.com/read/274556/7127220
m e0316.m
val=input('Enter a number :');
sum=0;cnt=0;
while (val~=0)
sum=sum+val; cnt=cnt+1;
val=input('Enter a number (end in 0):');
end
if (cnt> 0)
sum
mean=sum/cnt
end