代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/126718/14405984
c xval-prep.c
/*************************************************************************/
/* */
/* Program to prepare data file for cross-validation */
/* ------------------------------------------------
www.eeworm.com/read/227934/14406237
lst sms.lst
C51 COMPILER V7.02a SMS 08/28/2005 17:10:47 PAGE 1
C51 COMPILER V7.02a, COMPILATION OF MODULE SMS
OBJECT MODULE PLACED IN sm
www.eeworm.com/read/227723/14415507
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/227723/14416575
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/126556/14416861
c 44blib.c
/****************************************************************************
【文 件 名 称】44blib.c
【功 能 描 述】三星S3C44B0X通用子函数
【程 序 版 本】4.0
【创建人及创建日期】龚俊//2002年11月19日19:26
【修改人及修改日期】龚俊//2003年3月
www.eeworm.com/read/227639/14418688
c 16进制10进制.c
自己写一个转换函数不就行了?
//返回16进制字符串s对应的整数值,遇到任何一个非法字符都返回-1。
int HexToDec(char *s)
{
char *p = s;
//空串返回0。
if(*p == '\0')
return 0;
//忽略开头的'0'字符
while(*p == '0')
p++;
int dec = 0;
www.eeworm.com/read/227639/14418929
c 杨辉三角形.c
#include
int c(x,y);
main()
{
int i,j,n=13;
printf("N=");
while(n>12)
scanf("%d",&n);
for(i=0;i
www.eeworm.com/read/227639/14418932
c 桶排序.c
#include
void comp(int k[],int m,int l)
{
int i=10,j=0,z=1,y=1,x,w,b[500][10];
for(w=0;w