代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/330080/12916965
c 44blib.c
/************************************************
* NAME : 44BLIB.C *
* Version : 17.APR.00 *
************************************************/
#include "..\inc\44b.h"
#include "..\in
www.eeworm.com/read/243776/12917719
c 3-5.c
#include
#include
main()
{
int i=0;
char c;
SCON = 0x50;
TMOD |= 0x20;
TH1 = 0xf3;
TR1 = 1;
TI = 1;
while(1)
www.eeworm.com/read/243776/12917798
c 3-6.c
#include
#include
main()
{
int i=0;
char c;
SCON = 0x50;
TMOD |= 0x20;
TH1 = 0xf3;
TR1 = 1;
TI = 1;
while(1)
www.eeworm.com/read/142793/12918506
cpp strfile.cpp
//: C04:Strfile.cpp
// From "Thinking in C++, Volume 2", by Bruce Eckel & Chuck Allison.
// (c) 1995-2004 MindView, Inc. All Rights Reserved.
// See source code use permissions stated in the file '
www.eeworm.com/read/330043/12918661
学生管理系统
/*-------------1-------------*/
#include
#include /*头文件*/
#include
#include
#include
#include
#include
#include
#define NU
www.eeworm.com/read/243718/12920953
c utils.c
#include "def.h"
extern int SerialRxReady(void);
extern char SerialRxKey(void);
unsigned short ntohs(unsigned short s)
{
return (s >> 8) | (s
www.eeworm.com/read/142782/12922494
c netutil.c
/* Network utility functions for 'TCP/IP Lean' (c) Iosoft Ltd. 2000 */
#include
#include
#include
#include
#include "ethernet.h"
#include "netutil.h"
www.eeworm.com/read/329948/12925471
c bo4-3.c
/* bo4-3.c 串采用块链存储结构(由c4-3.h定义)的基本操作(16个) */
void InitString(LString *T)
{ /* 初始化(产生空串)字符串T。另加 */
(*T).curlen=0;
(*T).head=NULL;
(*T).tail=NULL;
}
Status StrAssign(LString *T,ch
www.eeworm.com/read/243633/12930590
c 16进制10进制.c
自己写一个转换函数不就行了?
//返回16进制字符串s对应的整数值,遇到任何一个非法字符都返回-1。
int HexToDec(char *s)
{
char *p = s;
//空串返回0。
if(*p == '\0')
return 0;
//忽略开头的'0'字符
while(*p == '0')
p++;
int dec = 0;
www.eeworm.com/read/243633/12930878
c 杨辉三角形.c
#include
int c(x,y);
main()
{
int i,j,n=13;
printf("N=");
while(n>12)
scanf("%d",&n);
for(i=0;i