代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/241771/13121186
c tc20.c
/******************
tc20.c
验证歌德巴赫猜想
******************/
#include "stdio.h"
#include "math.h"
int pn(int n); /*说明函数pn()*/
main( )
{
int i,f1,f2;
int num[100],k,n,m;
printf(
www.eeworm.com/read/326683/13124120
cpp mergesort.cpp
#include
#include
#include
#include
typedef struct
{
int value;
char s[55];
}Item;
void merge(int x[],int swap[],int k ,int n);
void mergesor
www.eeworm.com/read/326636/13128832
c lcd.c
#include
#include
#include
#include "DOTLIB.h"
#define Lcd_L_Mang XBYTE[0xd7ff]
#define Lcd_R_Mang XBYTE[0xcfff]
#define Lcd_W_L_D XBYTE[0xb7ff]
#define
www.eeworm.com/read/139776/13133513
c piksr2.c
void piksr2(int n, float arr[], float brr[])
{
int i,j;
float a,b;
for (j=2;j 0 && arr[i] > a) {
arr[i+1]=arr[i];
brr[i+1]=brr[i];
www.eeworm.com/read/139776/13133991
c hunt.c
void hunt(float xx[], unsigned long n, float x, unsigned long *jlo)
{
unsigned long jm,jhi,inc;
int ascnd;
ascnd=(xx[n] >= xx[1]);
if (*jlo n) {
*jlo=0;
jhi=n+1;
} else {
i
www.eeworm.com/read/139776/13134049
c sprstp.c
void sprstp(float sa[], unsigned long ija[], float sb[], unsigned long ijb[])
{
void iindexx(unsigned long n, long arr[], unsigned long indx[]);
unsigned long j,jl,jm,jp,ju,k,m,n2,noff,inc,iv;
flo
www.eeworm.com/read/139776/13134172
c crank.c
void crank(unsigned long n, float w[], float *s)
{
unsigned long j=1,ji,jt;
float t,rank;
*s=0.0;
while (j < n) {
if (w[j+1] != w[j]) {
w[j]=j;
++j;
} else {
for (jt=j+1;jt
www.eeworm.com/read/241586/13134683
cpp quicksort.cpp
template
int Partition(Type a[],int p,int r)
{
int i=p,
j=r+1;
Type x=a[p];
while(true) {
while (a[++i]x);
if(i>=j)break;
swap(a[i],a[j]);
www.eeworm.com/read/139776/13134826
c select.c
#define SWAP(a,b) temp=(a);(a)=(b);(b)=temp;
float select(unsigned long k, unsigned long n, float arr[])
{
unsigned long i,ir,j,l,mid;
float a,temp;
l=1;
ir=n;
for (;;) {
if (ir
www.eeworm.com/read/241573/13135488
cpp game_object_db.cpp
/* Copyright (C) Steve Rabin, 2000.
* All rights reserved worldwide.
*
* This software is provided "as is" without express or implied
* warranties. You may freely copy and compile this source int