代码搜索:continue
找到约 10,000 项符合「continue」的源代码
代码结果 10,000
www.eeworm.com/read/460712/7105848
m qftdm5.m
function qftdm5
%
% QFT DEMO #5
%
% Yossi Chait
% 2/15/92
%
% Craig Borghesani
% 9/9/93
% Copyright (c) 1995-98 by The MathWorks, Inc.
% $Revision: 1.5 $
global win1_loc win2_loc
www.eeworm.com/read/460712/7105877
m qftdm10.m
function qftdm10
%
% QFT DEMO #10
%
% Yossi Chait
% 2/15/92
%
% Craig Borghesani
% 9/9/93
% Copyright (c) 1995-98 by The MathWorks, Inc.
% $Revision: 1.5 $
global win1_loc win2_lo
www.eeworm.com/read/460712/7105878
m qftdm9.m
function qftdm9
%
% QFT DEMO #9
%
% Yossi Chait
% 2/15/92
%
% Craig Borghesani
% 9/9/93
% Copyright (c) 1995-98 by The MathWorks, Inc.
% $Revision: 1.5 $
global win1_loc win2_loc
www.eeworm.com/read/224208/7120965
m anttravel.m
function[p,fm]=anttravel(tao,alpha,beta,Y1,Y2,Y3)
%tao=ones(20,20);
%alpha=1;
%beta=2;
[z,l]=size(tao);
%Y1=0.2*rand(z,1)+0.4*ones(z,1);
%Y2=rand(z,1)+1.5*ones(z,1);
%Y3=rand(z,1)+1.5*ones(z,
www.eeworm.com/read/332978/7141727
java labeledfor.java
//: control/LabeledFor.java
// For loops with "labeled break" and "labeled continue."
import static net.mindview.util.Print.*;
public class LabeledFor {
public static void main(String[] args)
www.eeworm.com/read/289573/7142859
txt 5-16.txt
【例5.16】在“xsqk.dbf”数据表中查找姓朱的同学。
USE xsqk
LOCATE FOR name="朱"
DISPLAY
CONTINUE
DISPLAY
USE
www.eeworm.com/read/460384/7252202
f90 e_711_06.f90
DIMENSION A(5)
DATA A/1.,2.,3.,4.,5./
DO 10 I=1,10
WRITE (6,100) I
100 FORMAT (I)
10 CONTINUE
DO 20 I=1,5
WRITE (6,101) (A(I), J=1,I)
101 FORMAT
www.eeworm.com/read/457013/7335280
cpp unit4.cpp
//---------------------------------------------------------------------------
#include
#pragma hdrstop
#include "Unit4.h"
//------------------------------------------------------------
www.eeworm.com/read/454938/7381313
c ch01.1.2.1.c
#include
// #include
/**
**
the while loop has executed 1 times
the while loop has executed 2 times
the while loop has executed 3 times
the while loop has execute
www.eeworm.com/read/454368/7393108
sh geany_run_script.sh
#!/bin/sh
/home/ximilian/Devel/pflab/bin/
echo "
------------------
(program exited with code: $?)"
echo "Press return to continue"
#to be more compatible with shells like dash
dummy_var=""
re