代码搜索:continue
找到约 10,000 项符合「continue」的源代码
代码结果 10,000
www.eeworm.com/read/448182/7538521
c l3-12.c
/**********************************************************************
程序名称:L3-12.c
程序功能:演示continue语句的使用方法
程序作者:张三
创建时间:2008-3-28
****************************************************************
www.eeworm.com/read/447462/7550758
f dzasum.f
DOUBLE PRECISION FUNCTION DZASUM(N,ZX,INCX)
* .. Scalar Arguments ..
INTEGER INCX,N
* ..
* .. Array Arguments ..
DOUBLE COMPLEX ZX(*)
* ..
*
* Purpose
* =======
*
*
www.eeworm.com/read/445555/7593645
cpp 013.cpp
#include
#include
int main()
{
int N, i, counts, j, k, m, costtime;
register col, row;
int *arrCol, *arrRow;
printf("计算N皇后: 16皇后, 152秒; 14皇后, 3344豪秒;\n");
printf("输
www.eeworm.com/read/444619/7610419
asv crossover.asv
%交叉操作,概率为0.7,单点交叉
for i=1:2:40
cross_pos=round(9*rand(10)); %交叉位置为0~9,若位置为0,则不进行交叉操作
if cross_pos==0
continue;
end
cross_P=rand; %随机产生一个数,以比较交叉概率
if cr
www.eeworm.com/read/443686/7628647
cpp extractundeliverable.cpp
//: C10:ExtractUndeliverable.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Find undeliverable
www.eeworm.com/read/442858/7643362
txt 新建 文本文档.txt
0
1.40838
2.65104
3.74196
4.69512
5.52452
6.24412
6.86791
7.40988
7.88401
8.30427
8.68466
9.03915
9.38173
9.72637
10.5736
10.9511
11.3089
11.6482
11.97
12.2753
12.5652
12.8407
1
www.eeworm.com/read/440404/7689839
m divider.m
function [N,M]=divider(N1);
%DIVIDER Find dividers of an integer.
% [N,M]=DIVIDER(N1) find two integers N and M such that M*N=N1 and
% M and N as close as possible from sqrt(N1).
%
% Example :
% N1
www.eeworm.com/read/439400/7710455
tcl calculator.tcl
proc addition {nbr1 nbr2} {
set sum [expr $nbr1+$nbr2];
return $sum
}
proc subtraction {nbr1 nbr2} {
set sub [expr $nbr1-$nbr2]
return $sub
}
proc multiplication {nbr1 nbr2} {
www.eeworm.com/read/439271/7713399
m qftdm6.m
function qftdm6
%
% QFT DEMO #6
%
% Yossi Chait
% 2/15/93
%
% Craig Borghesani
% 11/18/93
% Copyright (c) 1995-98 by The MathWorks, Inc.
% $Revision: 1.5 $
global win1_loc win2_lo
www.eeworm.com/read/439050/7717515
cpp frustum.cpp
#include "StdAfx.h"
#include "Frustum.h"
#include "Sphere.h"
#include "AABB3.h"
//-------------------------------------------------------------------------------
// 平截头体面的枚举
//----------------