代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/132413/14090093
c eclass.c
void eclass(nf,n,lista,listb,m)
int nf[],lista[],listb[],n,m;
{
int l,k,j;
for (k=1;k
www.eeworm.com/read/204274/15342121
bak 8_7.c.bak
#include
void fun(char *a,char *b){
int i;
while(a[i]!='\0'){
}
}
www.eeworm.com/read/202322/15386646
txt test1_5.txt
main ( )
{
int m=1,j=6;
while(m) /* m不等于0,为真*/
{
j=j+m;
m =m-1;
}
printf(“%d”,j);
}
www.eeworm.com/read/202322/15386742
txt test1_5.txt
main ( )
{
int m=1,j=6;
while(m) /* m不等于0,为真*/
{
j=j+m;
m =m-1;
}
printf(“%d”,j);
}
www.eeworm.com/read/201909/15392964
m zhao.m
function s=zhao(arr,t)
s=0;
i=1;
while(arr(i)~=t)
i=i+1;
end
s=i;
if(s==0)
error('there is no element t in arr');
end
www.eeworm.com/read/201035/15418105
txt 归并排序1.txt
Merge(int A[], int L, int M, int R)
{
int *B = new int[R - L + 1];
int i = L, j = M + 1, k = 0;
while (i
www.eeworm.com/read/113586/15452710
readme
This is a set of shell scripts for testing Ethernet bridging.
mkbr makes a simple bridge and clones the ip address.
rmbr removes bridge
The functional test needs two ethernets (eth0, eth1,
and the d
www.eeworm.com/read/113090/15470396
c test.c
void main (void)
#define Bitnumber 7
{
unsigned int I,J;
I = (I >> (Bitnumber + 1)) + J;
while (1) {};
}
www.eeworm.com/read/113029/15472490
cpp ex02_25.cpp
// Ex. 2.25: ex_02_25.cpp
// What does this program print?
#include
using std::cout;
using std::endl;
// function main begins program execution
int main()
{
int row = 10; /
www.eeworm.com/read/113029/15472496
cpp fig02_24.cpp
// Fig. 2.24: fig02_24.cpp
// Using the do/while repetition structure.
#include
using std::cout;
using std::endl;
// function main begins program execution
int main()
{
int c