代码搜索:while

找到约 10,000 项符合「while」的源代码

代码结果 10,000
www.eeworm.com/read/315987/13533303

cpp examc_003.cpp

// examC_003.cpp : Defines the entry point for the console application. // /****RSA****/ #include "stdafx.h" #include "iostream.h" int candp(int x,int c,int n) { long z=1; int cc[16]; f
www.eeworm.com/read/315945/13534028

cpp menu3.cpp

#include "menu.h" /*包含find、findmore、display、transport四个函数*/ /*-----------------------------------------------------------------* *函数: find()
www.eeworm.com/read/315904/13535002

c init.c

/***********init.c************************/ #include "global.h" struct entry keywords[]= { "if",IF, "IF",IF, "then",THEN, "THEN",THEN, "else",ELSE, "ELSE",ELSE, "while",WHILE, "WH
www.eeworm.com/read/315791/13536359

cpp cifafenxi.cpp

#include #include #include #include char a[50] ,b[50],d[200],e[10]; char ch; int n1,i1=0,flag=1,n=5; int total=0;/*步骤计数器*/ int E(
www.eeworm.com/read/315759/13536787

cpp 迷宫求解.cpp

#include #define MAXSIZE 10 int top=0; int stack[MAXSIZE*MAXSIZE][2]; Find_Path(int maze[MAXSIZE][MAXSIZE],int rx,int ry,int cx,int cy) { int leap=0; stack[top][0]=rx; stack[top][1
www.eeworm.com/read/315699/13537880

c hiding.c

/* hiding.c -- variables in blocks */ #include int main() { int x = 30; /* original x */ printf("x in outer block: %d\n", x); { int x = 77; /*
www.eeworm.com/read/315699/13538003

c truth.c

// truth.c -- what values are true? #include int main(void) { int n = 3; while (n) printf("%2d is true\n", n--); printf("%2d is false\n", n); n = -3;
www.eeworm.com/read/315699/13538039

c shoes2.c

/* shoes2.c -- calculates foot lengths for several sizes */ #include #define ADJUST 7.64 #define SCALE 0.325 int main(void) { double shoe, foot; printf("Shoe size (men's)
www.eeworm.com/read/315631/13539440

c 0_to_100.c

#include void main () { int value = 0; while (value
www.eeworm.com/read/315631/13539452

c no_cont.c

#include void main() { int counter; printf("\nEven values\n"); for (counter = 1; counter