代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/458682/7291731
sh redir2.sh
#!/bin/bash
# redir2.sh
if [ -z "$1" ]
then
Filename=names.data # Default, if no filename specified.
else
Filename=$1
fi
#+ Filename=${1:-names.data}
# can replace the above test (parame
www.eeworm.com/read/458651/7292321
c student_statistic.c
void statistic(student *head,int *sta[2]){
student *p;
int *arr[2];
p=head;
arr=sta;
int i=0;
while(p!=NULL){
for(i=0;i
www.eeworm.com/read/458651/7292327
c student_insert.c
int insert(student *head,student *node){
student *p1;
student *p2;
p1=p2=head;
if(strcmp(head->name,node->name)==0){
node->next=head;
head=node;
return 1;
}
www.eeworm.com/read/458585/7293826
log change.log
Notepad++ v4.8.2 fixed bugs and added features (from v4.8.1) :
1. Fix unicode input problem for non-western language.
2. Add the capacity (behaviour) of keeping line highlighting even when Notep
www.eeworm.com/read/458522/7295002
c chuankoushiyan .c
//========================================================
//串口通信实验
//单片机自动给上位机发送ASCII码为0~127的字符
//=========================================================
#include
unsigned char i=0;
www.eeworm.com/read/458508/7295313
pas bubblesort.pas
procedure BubbleSort( var a: array of integer; min, max: Integer);
var
i, j, tmp: integer;
b : boolean;
begin
for i := min to max do begin
f := False;
for j := min to
www.eeworm.com/read/458438/7296595
c longint .c
#include
#include
typedef struct Node{
int data ; /* 数据域 */
struct Node *prior; /* 前驱 */
struct Node *next ; /* 后继 */
}LNode, *LinkList;
v
www.eeworm.com/read/458397/7297090
h key.h
sbit key1 = P3^2;
sbit key2= P3^3;
sbit key3 = P3^4;
sbit key4 = P3^5;
uchar ucKeyTemp;
#define keyPort P3
delaykey()
{
while(30);
}
unsigned char GetKey(void)
{
www.eeworm.com/read/458360/7298470
c sim.c
/* @(#) sim.c 1.2 1/27/86 17:48:09 */
/*ident "@(#)cfront:lib/task/sim.c 1.2"*/
/* @(#) sim.c 1.1 1/17/85 14:49:52 */
#include "task.h"
histogram.histogram(int nb, int ll, int rr)
{
DB(("x%x->histogr