代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/399963/7819125
while1
#!/bin/sh
echo "Enter password"
read trythis
while [ "$trythis" != "secret" ]; do
echo "Sorry, try again"
read trythis
done
exit 0
www.eeworm.com/read/399963/7819150
while2
#!/bin/sh
foo=1
while [ "$foo" -le 20 ]
do
echo "Here we go again"
foo=$(($foo+1))
done
exit 0
www.eeworm.com/read/299910/7824241
txt while.txt
void printf(char *s,int t);
void main(void)
{
int i;
int k;
i = 2;
k = -4;
while(k
www.eeworm.com/read/299910/7824273
exe while.exe
www.eeworm.com/read/299910/7824302
asm while.asm
.386p
model flat
extrn _printf:near
.code
_main proc near
push ebp
mov ebp,esp
sub esp, 12
mov edx , 2
mov dword ptr [ebp-4], edx;i
mov edx , -4
mov dword ptr [
www.eeworm.com/read/299910/7824326
obj while.obj
www.eeworm.com/read/299910/7824332
map while.map
Start Length Name Class
0001:00000000 0000000B1H _TEXT CODE
0002:00000000 000000010H _DATA DATA
0002:00000010 000000000H _BSS
www.eeworm.com/read/199075/7890353
cpp while.cpp
// Listing 6.1
// Looping with while
#include
int main()
{
int counter = 0; // initialize the condition
while(counter < 5) // test con
www.eeworm.com/read/333254/12693346
cpp while.cpp
// while.cpp -- introducing the while loop
#include
const int ArSize = 20;
int main()
{
using namespace std;
char name[ArSize];
cout
www.eeworm.com/read/144931/12761712
c while.c
/* File while.c: 2.1 (83/03/20,16:02:22) */
/*% cc -O -c %
*
*/
#include
#include "defs.h"
#include "data.h"
#include "headers.h"
void addwhile(int *ptr) {
int k;