代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/328878/12996815
txt 复件 ll1文法另1改进.txt
1 K->function id {L}
2 L->LMS
3 L->S
4 M->epsilon
5 S->{L}
6 S->US
7 U->W B do
8 W->while
9 C->if B then
10.F->CSelse
11 S->CS
12 S->FS
13 S->T D;
14 T->int
15 D->D,id
16.D->id
17 S->i
www.eeworm.com/read/328878/12996828
txt ll1文法另1.txt
1 K->function id {L}
2 L->LMS
3 L->S
4 M->epsilon
5 S->{L}
6 S->US
7 U->W B do
8 W->while
9 C->if B then
10.F->CSelse
11 S->CS
12 S->FS
13 S->T D;
14 T->int
15 D->D,id
16.D->id
17 S->i
www.eeworm.com/read/242581/12998243
lst_size
#! /usr/bin/perl
$h = "[0-9A-F]";
$hh = "$h$h";
$s = "[rs\* ]";
$num = 0;
while () {
next unless /^ $h{4} /;
$d = $';
if ($d =~ /^($hh)$s($hh)$s($hh)/) {
$num += 3;
# print "3 $d";
nex
www.eeworm.com/read/141570/13000005
txt 127.txt
设计一个可中断循环的按钮。
当 程 序 进 入 循 环 而 尚 未 脱 离 时 , 使 用 者 将 无 法 操 作 表单 上 的 控 制 控 件 , 所 以 按 钮 也 是 无 法 操 作 的 。 想 要 设计 可 中 断 循 环 的 按 钮 , 首 先 必 须 在 循 环 之 中 安 插 DoEvents 叙 述 , 例 如 :
<mark>While</mark> ...
循 环 内 的 处 理 工 作
Do ...
www.eeworm.com/read/242539/13000430
c main.c
#define uchar unsigned char //定义一下方便使用
#define uint unsigned int
#define ulong unsigned long
#include //包括一个52标准内核的头文件
sbit P10 = P1^0; //头文件中没有定义的IO就要自己来定义了
sbit P11 = P1^1;
sb
www.eeworm.com/read/242539/13000983
c main.c
#define uchar unsigned char //定义一下方便使用
#define uint unsigned int
#define ulong unsigned long
#include //包括一个52标准内核的头文件
char code dx516[3] _at_ 0x003b;//这是为了仿真设置的
sbit P10=P1^
www.eeworm.com/read/328803/13001203
c convert.c
#include "convert.h"
#include
int stoi(char *s,int radix)
{
char *p = s;
int val = 0;
if ( radix==8 )
// oct
{
p++; // skip leading '0'
while (
www.eeworm.com/read/141545/13001372
c 0_to_100.c
#include
void main(void)
{
int value = 0;
while (value
www.eeworm.com/read/242534/13001580
c loadermisc.c
/*
* loadermisc.c - miscellaneous loader functions that don't seem to fit
* anywhere else (yet) (was misc.c)
* JKFIXME: need to break out into reasonable files based on function
*
* Erik Troan
www.eeworm.com/read/242478/13003264
m ex3_11.m
sum=0;
cnt=0;
val=input('Enter a number (end in 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/cn