代码搜索:while

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

代码结果 10,000
www.eeworm.com/read/257271/11937348

c compmain.c

//******************************************** //文件名:COMPMAIN.C //功能:1. 调用显示汉字函数 // 2. 调用字符处理函数 // 3. 比较两个扇区文件,报告不相同的字节编号 //******************************************** #include
www.eeworm.com/read/154653/11940186

c 44blib.c

#include #include #include #include #include #include "..\target\44b.h" #include "..\target\44blib.h" #include "..\target\def.h" #inclu
www.eeworm.com/read/343574/11941525

lst pwmnew.lst

C51 COMPILER V7.50 PWMNEW 07/27/2008 08:28:47 PAGE 1 C51 COMPILER V7.50, COMPILATION OF MODULE PWMNEW OBJECT MODULE PLACED IN
www.eeworm.com/read/154628/11941696

cpp 8_6.cpp

//8_6 char* strcpy(char* dest, const char* src) { char* pdest=dest; char* psrc=(char*)src; while(*pdest++ = *psrc++); return dest; }
www.eeworm.com/read/343545/11942379

c kechengshejidaoyou.c

#include #include #include #include //exist #define max 500 #define num 50 #define maxdist 10000 typedef struct graph { int
www.eeworm.com/read/257211/11944287

c 2.c

#include //预处理命令 void main(void) //主函数名 { //这是第一种注释方式 unsigned int a; //定义变量a为int类型 /* 这是第二种注释方式 */ do{ //do while组成循环 for (a=0; a
www.eeworm.com/read/257154/11946450

txt 选择排序.txt

public static void selectionsort(int data[],int n) //n表示要排序的数组元素个数 { int numunsorted=n; int index; int max; while(numunsorted>1) { max=0; for(index=1;index
www.eeworm.com/read/257092/11950373

lst pwmmain.lst

C51 COMPILER V6.14h PWMMAIN 07/27/2001 03:58:22 PAGE 1 C51 COMPILER V6.14h, COMPILATION OF MODULE PWMMAIN OBJECT MODULE PLACED I
www.eeworm.com/read/154491/11950493

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$ */ #de
www.eeworm.com/read/343401/11950898

c 16.c

#include /*定义待排序数组的最大长度*/ #define MAX 100 /*———————————————————————直接插入排序——————————————————————————*/ void InsertSort(int *R,int n) { /* 对数组R中的元素R[1]..R[n-1]按递增序进行插入排序*/ int i,j