代码搜索:continue
找到约 10,000 项符合「continue」的源代码
代码结果 10,000
www.eeworm.com/read/385664/8792995
c window.c
/* $Id: window.c,v 1.1.1.1 2004/02/15 23:24:44 pfalcon Exp $
*
* WINDOW.C - activate & window internal commands.
*
* clone from 4nt activate command
*
* 10 Sep 1999 (Paolo Pantaleo)
* start
www.eeworm.com/read/385412/8806293
cpp maintest.cpp
#include
#include
#include
#include
#include
#include
#include"topic.h"
#include
char way;
int x=175,y=105;
unsigned s
www.eeworm.com/read/385265/8811127
cpp [1042]n!.cpp
// [1042]N!.cpp : 定义控制台应用程序的入口点。
//
/*
#include
#define MAX 100000//传统6存1算法
int main()
{
int n;
while (scanf("%d",&n)!=EOF)
{
if(n==0)//0!规定为1
{
www.eeworm.com/read/384965/8826634
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/384830/8839781
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/427960/8908525
cpp mersenne.cpp
/*
* Program to calculate mersenne primes
* using Lucas-Lehmer test - Knuth p.391
*
* Try this only in a 32-bit (or better) environment
*
* Requires: big.cpp
*
* Copyright (c
www.eeworm.com/read/185976/8969413
c cal-diameter.c
#include
#include
#include
#define N 7
main()
{
static int tag[N],diameter[N][N],p,q ,deg1[N],deg2[N],adjmatrix[N][N];
float sum;
int i,j,k,l,d;
adjmatrix[1
www.eeworm.com/read/283067/9044600
c cdfcmdline.c
#include "taskparams.h"
#include "exitit.h"
#include "cdfpred.h"
#include "cdfstat.h"
#include "cfamily.h"
#include
#include
char *synmsg= "\n" PROGNAME
"\nsfal
www.eeworm.com/read/184984/9061933
c cc11.c
/*
** Small-C, 8088/8086 version -- modified by R. Grehan, BYTE Magazine
** execution begins here
*/
main(argc, argv) int argc, *argv; {
argcs=argc;
argvs=argv;
fputs("Small-C Compiler,
www.eeworm.com/read/282675/9075175
py testtest.py
"""
A much simpler testing framework than PyUnit
tests a module by running all functions in it whose name starts with 'test'
a test fails if it raises an exception, otherwise it passes
functions ar