代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/208637/15241921
c 3rabs.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/208637/15241933
c 3rabs.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/208576/15243608
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/208576/15244033
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/207626/15266696
a
program
example
;
var
a
,
b
,
c
:
integer
;
x
:
char
;
begin
if
(
a
+
c
*
3
>
b
)
and
(
b
>
3
)
then
c
:=
3
;
x
:=
2
+
www.eeworm.com/read/207626/15266718
txt c.txt
program
example
;
var
a
,
b
,
c
:
integer
;
x
:
char
;
begin
if
(
a
+
c
*
3
>
b
)
and
(
b
>
3
)
then
c
:=
3
;
x
:=
2
+
www.eeworm.com/read/207626/15266724
txt 1.txt
program example;
var
a:=1,b:=3,c:=2:integer;
x:char;
begin
if(a+c*3>b) and (b>3) then c:=3;
x:=2+(3*a)-b*c*8;
if(2+3>a) and (b>3) and (a>c) then c:=3;
for x:=1+2 to 3 do b:=100;
while a>
www.eeworm.com/read/172774/5382095
c strcat.c
#include
char *strcat(char *s1, CONST char *s2)
{
char *s = s1;
while (*s1)
s1++;
while (*s2)
*s1++ = *s2++;
*s1 = *s2;
return s;
}
www.eeworm.com/read/170239/5406067
c genlib.c
/* genlib.c:
* This file has some of the stuff that is typically pulled in by the c
* library. It is provided as local source so that the monitor can be
* built without the need for a library.