代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/157814/11661733
txt ch8_2.txt
void binsort(JD r[],int n)
{ int i,j,x,s,m,k;
for(i=2;i
www.eeworm.com/read/157814/11661900
txt ch8_5.txt
void qksort(JD r[],int t,int w)
{ int i,j,k;
JD x;
if(t>=w) return;
i=t; j=w; x=r[i];
while(i
www.eeworm.com/read/157220/11729097
perl remove_blank_lines.perl
#!/usr/bin/env perl
BEGIN{ $^W=1 }
while () {
if (/\S+/) {
print;
}
}
www.eeworm.com/read/346528/11739307
m reordervec.m
% reordervec Transformation vector for reordering the qudits according to
% the given pattern.
% reordervec(pattern,d) gives a transformation vector for
% putting the qudits in the
www.eeworm.com/read/260161/11742131
c c2.c
#include
void main(void)
{
while(1)
{
if(P1_4==0)
{
P1_0=0;
}
else
{
P1_0=1;
}
if(P1_5==0)
www.eeworm.com/read/260161/11742416
c c2.c
#include
void main(void)
{
while(1)
{
if(P1_4==0)
{
P1_0=0;
}
else
{
P1_0=1;
}
if(P1_5==0)
www.eeworm.com/read/156458/11802357
cpp eclass.cpp
void eclass(int nf[], int n, int lista[], int listb[], int m)
{
int k,l,j;
for (k = 1; k
www.eeworm.com/read/156385/11807180
c float_operation.c
float data1;
float data2;
float data3;
double data4;
main()
{
while(1)
{
data1=14.2;
data2=-3.2;
data3=data1*data2;
data4=data1/data2;
}
}
www.eeworm.com/read/345247/11824072
c ex4-22.c
#include
main() {
int x, *p, ** q;
x=10;
p=&x;
q=&p;
printf("%d\n:, x);
printf("%d\n:, * p);
printf("%d\n:, ** q);
while(1);
www.eeworm.com/read/258097/11884458
pl dump2hex.pl
while ()
{
if (s/^ [0-9a-fA-F]+\s+(.{35}).*/\1/ && s/ /\n/g && s/(..)(..)(..)(..)\s*/\1\n\2\n\3\n\4\n/g)
{
print $_;
}
}