代码搜索:enum
找到约 10,000 项符合「enum」的源代码
代码结果 10,000
www.eeworm.com/read/300917/13880419
txt enum.txt
#include
void main()
{
enum weekday
{
sun,mon,tue,wed,thu,fri,sat
}a,b,c;
a=sun;
b=mon;
c=tue;
printf("%d,%d,%d",a,b,c);
}
www.eeworm.com/read/149876/5696520
exp enum.exp
# Copyright (C) 1995, 1997 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
www.eeworm.com/read/149876/5696543
ch enum.ch
hugo: module
synmode m_set = set (a, b, c, d, e, f, g, h, i);
dcl x long;
dcl y m_set;
writetext (stdout, "done.%/");
end hugo;
www.eeworm.com/read/149795/5697212
c enum.c
/*
* $Id: enum.c,v 1.18 2004/12/03 19:09:32 andrei Exp $
*
* Enum and E164 related functions
*
* Copyright (C) 2002-2003 Juha Heinanen
*
* This file is part of ser, a free SIP server.
*
* ser
www.eeworm.com/read/149795/5697214
h enum.h
/*
* $Id: enum.h,v 1.4 2003/12/17 06:04:48 jih Exp $
*
* Header file for Enum and E164 related functions
*
* Copyright (C) 2002-2003 Juha Heinanen
*
* This file is part of ser, a free SIP serve
www.eeworm.com/read/148694/5711954
exp enum.exp
# Copyright (C) 1995, 1997 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
www.eeworm.com/read/148694/5711977
ch enum.ch
hugo: module
synmode m_set = set (a, b, c, d, e, f, g, h, i);
dcl x long;
dcl y m_set;
writetext (stdout, "done.%/");
end hugo;
www.eeworm.com/read/147529/5728682
m enum.m
%最优化枚举法例
clear;
vmax=-inf;
for x2=10:20
for x3=-5:16
if x2+2*x3>=10&3*x2+2*x3vmax,
vmax=v;x20=x2;x30=x3;
end