代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/192357/8384849
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/192274/8390269
c rabs.c
void rabs(a,b,r,p,n)
int a,b,*r,n,p[];
{ int k,l,m,i;
k=b-a+1; l=2;
while (l
www.eeworm.com/read/188584/8526799
txt test_error.txt
if a>8+3*d+6 | 3>4 & ea do;
begin
a=9;
b=7;
end
}
www.eeworm.com/read/188512/8532220
cpp ex04_22.cpp
// Exercise 4.22: ex04_22.cpp
// What does this program print?
#include
using std::cout;
using std::endl;
int main()
{
int row = 10; // initialize row
int column; // declare
www.eeworm.com/read/188512/8533471
cpp fig05_07.cpp
// Fig. 5.11: fig05_11.cpp
// do...while repetition statement.
#include
using std::cout;
using std::endl;
int main()
{
int counter = 1; // initialize counter
do
{
www.eeworm.com/read/432144/8624036
c 16.1 实数结构体数组的顺序查找 rsech.c
int rsech(p,k,m,a,b)
STRU p[];
double a,b;
int k,m;
{ int i;
i=k;
while ((im) return(-1);
return(i);
}
www.eeworm.com/read/432144/8624042
c 16.4 整数按关键字成员有序的结构体数组的对分查找 ibkey.c
int ibkey(p,n,a,b,m)
int n,*m;
BISERCH *p[];
int a,b;
{ int i,j,k;
i=1; j=n;
while (i=a)&&((*p[k-1]).KEY
www.eeworm.com/read/432144/8624089
c 16.1 字符结构体数组的顺序查找 csech.c
int csech(p,k,m,a,b)
STRU p[];
char a,b;
int k,m;
{ int i;
i=k;
while ((im) return(-1);
return(i);
}