代码搜索:while

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

代码结果 10,000
www.eeworm.com/read/271550/10989915

c uart.c

/*= uart.c ========================================================================================= * * Copyright (C) 2004 Nordic Semiconductor * * This file is distributed in the hope that i
www.eeworm.com/read/417373/10992561

cpp pc.cpp

// PL0 Compiler #include #include #include #include "pl0.h" void main(int argc,char *argv[]) { char filename[256]; printf("pl/0 compiler version 1.0\nwriten
www.eeworm.com/read/271450/10993743

cpp stack3.cpp

//: C20:Stack3.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 1999 // Copyright notice in Copyright.txt // Using a vector as a stack; m
www.eeworm.com/read/271450/10994453

cpp strfile.cpp

//: C18:Strfile.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 1999 // Copyright notice in Copyright.txt // Stream I/O with files //
www.eeworm.com/read/271450/10994501

h applymember.h

//: C19:applyMember.h // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 1999 // Copyright notice in Copyright.txt // applySequence.h modified
www.eeworm.com/read/271450/10994732

cpp sitemapconvert.cpp

//: C17:SiteMapConvert.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 1999 // Copyright notice in Copyright.txt // Using strings to cre
www.eeworm.com/read/271405/10998107

c sh102.c

#include #define uint unsigned int sbit gate1=P2^0; // 定义P2-0口 sbit gate2=P2^1; // 定义P2-1口 sbit gate3=P2^2; // 定义P2-2口 sbit gate4=P2^3; // 定义P2-3口 void main(v
www.eeworm.com/read/271405/10998115

c sh101.c

#include sbit gate=P2^0; // 定义P2-0口 void main(void) { unsigned int i,j; while(1) { for(i=1000;i>0;i--) for(j=1000;j>0;j--); // 双重循环,延时约1秒 gate=!gate; // 对P-0口取反,控制小灯的
www.eeworm.com/read/417225/10999704

java teamflock.java

package dwteam; import robocode.*; import java.util.Vector; import java.util.Iterator; /********************************************** * IBM developerWorks Sample Code * (c) 2002, All Right Reserved
www.eeworm.com/read/271347/10999778

c list1.c

#include struct Link { int data; struct Link *next; }; /*创建链表并将文件中的数据读入链表中*/ struct Link *CreatLink() { struct Link *p,*head; FILE *fp; int num;