代码搜索:continue
找到约 10,000 项符合「continue」的源代码
代码结果 10,000
www.eeworm.com/read/297900/7986146
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/297900/7986234
org divider.org
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/196917/8042257
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/196560/8075359
netlib-patches
*** bandr.f.orig Tue Oct 3 14:04:34 1989
--- bandr.f Mon Jan 8 18:57:45 1990
***************
*** 98,104 ****
if (g .eq. 0.0e0) go to 600
b1 = a(j1,1) / g
www.eeworm.com/read/396525/8101654
cpp debug_stack.cpp
#include"Stack.h"
#include
void main()
{
char choose = '5';
Stack_entry item;
Stack try_stack;
cout
www.eeworm.com/read/332495/12752364
txt 4-28(2).txt
#include
#include
#include
int main()
{
FILE *fp;
char filename[20],ch;
char str[2000]="\0",a[100][2000],b[100][2000],swap[80]="\0";
int c,d[1000],d
www.eeworm.com/read/332478/12754334
cpp importantlistmgr.cpp
// ImportantListMgr.cpp: implementation of the CImportantListMgr class.
//
//////////////////////////////////////////////////////////////////////
#include "../stdafx.h"
#include "ImportantListMg
www.eeworm.com/read/332417/12759302
cpp main.cpp
#include "Calculator.cpp"
void main()
{/*实现课本第四章4.2节栈部分的表达式计算的内容(操作符暂时只包括+-/*和左右括号)。
能利用后缀表示计算表达式的值;
提供中缀表达式转换成后缀表达式的功能
基于上面的基础,实现对于输入表达式的求值。比如:1 + 3 * 4 / 2 = ?
*/
char ch='y';
Calculator c
www.eeworm.com/read/245836/12778570
csh run_tests.csh
#!/bin/csh -f
# runs a test in each directory containing a matlab script named analyze_test.m
echo
echo "------------------------------"
echo "- Test suite for SEM2DPACK -"
echo "------------------
www.eeworm.com/read/245818/12779026
c names_str.c
// names_str.c -- define names_st functions
#include
#include "names_str.h" // include the revised header file
// function definitions
void get_names(names * pn)
{
int i;