代码搜索:continue
找到约 10,000 项符合「continue」的源代码
代码结果 10,000
www.eeworm.com/read/218317/14926723
h constant_define.h
//////////////////////////////////////////////////////////////////////////////////////////////
// ///
//
www.eeworm.com/read/116271/14981295
y ch3-04.y
%{
#include "ch3hdr.h"
#include
%}
%union {
double dval;
struct symtab *symp;
}
%token NAME
%token NUMBER
%left '-' '+'
%left '*' '/'
%nonassoc UMINUS
%type express
www.eeworm.com/read/116266/14981529
y ch3-04.y
%{
#include "ch3hdr.h"
#include
%}
%union {
double dval;
struct symtab *symp;
}
%token NAME
%token NUMBER
%left '-' '+'
%left '*' '/'
%nonassoc UMINUS
%type exp
www.eeworm.com/read/116219/14982458
c ush-parse.c
/* ush-parse.c */
/* scanner/parser for ush */
#include "ush.h"
#include "ush-parse.h"
TOKEN gettoken(char *word)
{
enum
{ NEUTRAL, GTGT, INQUOTE, INWORD }
state = NEUTRAL;
int c;
www.eeworm.com/read/216853/14990990
tcl tcmd.tcl
proc execCmdFile {cmdFile} {
global prompt g_dbgFlag g_devip
# enable debug
set g_dbgFlag 1
# login
set spawn_id [login $g_devip "su3" "su3"]
if {$spawn_id == 0} {
errLog "login ipaddr
www.eeworm.com/read/215709/15051698
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/211952/15169944
cpp p2648_dp.cpp
#include
using namespace std;
long long f [11] [320] [6] , Ans [320];
void prepare ();
main ()
{
int N;
prepare ();
while ( cin >> N ) cout
www.eeworm.com/read/211952/15170157
cpp p1856.cpp
#include
#include
#define maxn 50001
typedef long long int64;
int cmp(const void *a,const void *b)
{
return *(int64*)a-*(int64*)b;
}
int64 result[maxn];
int main()
{
www.eeworm.com/read/207217/15279429
cpp ex5_06.cpp
// Exercise 5.6 Generate a lottery entry consisting of 6 numbers from 1 to 49
#include
#include
#include
#include
using std::cout;
using std::endl;
using st
www.eeworm.com/read/169681/5416010
c m6845vga.c
/* m6845Vga.c - motorola 6845 vga console driver routines */
/* Copyright 1993-1993 Wind River System, Inc. */
#include "copyright_wrs.h"
/*
modification history
--------------------
01e,12feb97,hdn