代码搜索:Repeat
找到约 6,690 项符合「Repeat」的源代码
代码结果 6,690
www.eeworm.com/read/457902/7315692
c repeat.c
/* repeat.c -- main() with arguments */
#include
int main(int argc, char *argv[])
{
int count;
printf("The command line has %d arguments:\n", argc - 1);
for (count = 1; c
www.eeworm.com/read/449530/7501223
c repeat.c
/* repeat.c -- main() with arguments */
#include
int main(int argc, char *argv[])
{
int count;
printf("The command line has %d arguments:\n", argc - 1);
for (count = 1; c
www.eeworm.com/read/198197/7947603
ppt repeat.ppt
www.eeworm.com/read/198197/7947605
cpp repeat.cpp
#include
#include
#include
#include
using namespace std;
//#include "time.h"
long int n,countnum=0;
ifstream input;
ofstream output;
void swap(char &
www.eeworm.com/read/246726/12707016
c repeat.c
/*
Author: Pate Williams (c) 1997
2.143 Algorithm Repeated sqaure-and-mutiply
algorithm for exponentiation in Zn
See "Handbook of Applied Cryptography" by
Alfred J. Menezes et al pag
www.eeworm.com/read/144931/12761723
c repeat.c
/************************************************************
Controls LED 4 on the STK200.
Simply toggles the state of LED 4 every time it runs. Uses
ReRunMe to requeue itself each time.
********
www.eeworm.com/read/245818/12779148
c repeat.c
/* repeat.c -- main() with arguments */
#include
int main(int argc, char *argv[])
{
int count;
printf("The command line has %d arguments:\n", argc - 1);
for (count = 1; c
www.eeworm.com/read/330315/12902533
cod repeat.cod
=== COMPILE PL0 ===
0 PROGRAM EX01;
0 VAR A,B;
1 BEGIN
2 A:=1;
4 B:=10;
6 REPEAT
6 A:=A+1;
10 B:=B-1;
14 DOWHILE A
www.eeworm.com/read/328485/13025027
txt repeat语句.txt
<mark>repeat</mark>语句会重复执行一行或一段语句直到某一状态为真。语句以<mark>repeat</mark>开始,以until结束,其后跟随被判断的布尔表达式。参阅以下的例程:
i := 0;
<mark>repeat</mark>
i := i+1;
Writen(i);
until i=10;
当此语句被执行时,窗体的下方会出现1到10的数字。布尔表达式 i=10 (注意,与其他语言不同的是,“ ...
www.eeworm.com/read/325432/13206472
txt repeat.txt
var a,sum;
begin
a:=0;
sum:=0;
repeat
begin
sum:=sum+a;
a++;
end;
until a>10;
write(sum)
end.