代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/277434/10639936
c 15ckey.c
void ckey(p,n,k,m)
int n,k,m;
HEAPSORT *p[];
{ int i,l;
HEAPSORT *w;
void pcsift();
if (kn-1) m=n-1;
l=m-k+1;
for (i=l/2-1; i>=0; i--)
www.eeworm.com/read/277434/10640006
c 3rab1.c
int rab1(a,b,r)
int a,b,*r;
{ int k,l,m,i,p;
k=b-a+1; l=2;
while (l
www.eeworm.com/read/159331/10668989
c root.c
/*
* Copyright (c) 1995,2000 TriMedia Technologies Inc.
*
* +------------------------------------------------------------------+
* | This software is furnished under a license and may
www.eeworm.com/read/421976/10673202
c twodim.c
# include
void main()
{
int array[16][16];
int i, j, k, m, n;
/* 变量初始化 */
m = 1;
while(m == 1)
{
printf("请输入n(0
www.eeworm.com/read/421908/10680254
h hal.h
/******************************************************************************
+------------------------------------------------------------------------------
| File: hal.h
| Target: c
www.eeworm.com/read/159200/10680956
cpp commwizarddlg.cpp
// CommWizardDlg.cpp : implementation file
//
#include "stdafx.h"
#include "CommWizard.h"
#include "CommWizardDlg.h"
#include "SettingDlg.h"
#include "fstream.h"
#include "iostream.h"
#inclu
www.eeworm.com/read/276954/10692052
cpp kmlocal.cpp
//----------------------------------------------------------------------
// File: KMlocal.cc
// Programmer: David Mount
// Last modified: 03/27/02
// Description: k-means clustering
www.eeworm.com/read/159132/10692411
pl brute.pl
#!/usr/bin/perl
$p=$ARGV[0];
$i=$ARGV[1];
while(1){
print "offset: $i.\n";
system("$p $i ");
$i+=1;
}