代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/308753/13693364
txt 1001.txt
Memory: 28K Time: 0MS
Language: C++ Result: Accepted
Source Code
#include
#include
#include
#include
int Ans[1000];
void Multiply(int n){
www.eeworm.com/read/308711/13694858
c loop1.c
#include "reg51.h"
#include"intrins.h" //该文件包含有_crol_(…)函数的说明
void mDelay(unsigned int DelayTime)
{ unsigned int j=0;
for(;DelayTime>0;DelayTime--)
{ for(j=0;j
www.eeworm.com/read/308711/13694951
c loop2.c
#include "reg51.h"
#include"intrins.h" //该文件包含有_crol_(…)函数的说明
void mDelay(unsigned int DelayTime)
{ unsigned int j=0;
for(;DelayTime>0;DelayTime--)
{ for(j=0;j
www.eeworm.com/read/308708/13695110
cpp bo4-3.cpp
// bo4-3.cpp 串采用块链存储结构(由c4-3.h定义)的基本操作(16个)
void InitString(LString &T)
{ // 初始化(产生空串)字符串T。另加
T.curlen=0;
T.head=NULL;
T.tail=NULL;
}
Status StrAssign(LString &T,char *chars)
www.eeworm.com/read/308708/13695314
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/308704/13695533
c mystring.c
//**********************************************************************************
//杨屹 2002/08/20 第一版
//字符串操作函数
//联系方法:gdtyy@ri.gdt.com.cn(2003/07/31以前有效)
//******************************
www.eeworm.com/read/308670/13696399
c total5w.c
/*-*/
/********************************************************
* Program: ADD5 -- Adds up 5 numbers. *
* *
* Usage: *
* Run it, type in 5 numbers and get a total. *
****************
www.eeworm.com/read/308602/13699175
m e0316.m
val=input('Enter a number :');
sum=0;cnt=0;
while (val~=0)
sum=sum+val; cnt=cnt+1;
val=input('Enter a number (end in 0):');
end
if (cnt> 0)
sum
mean=sum/cnt
end
www.eeworm.com/read/308539/13700049
cpp bwfind.cpp
// Bwfind.cpp: implementation of the CBwfind class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "bw.h"
#include "Bwfind.h"
#ifdef _
www.eeworm.com/read/308482/13700472
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