代码搜索:statement
找到约 10,000 项符合「statement」的源代码
代码结果 10,000
www.eeworm.com/read/327092/6346598
html 0487-0490.html
Developer.com - Online Reference Library - 0672311739:RED HAT LINUX 2ND EDITION:Perl Programming
www.eeworm.com/read/327092/6347191
html 276-278.html
Linux Unleashed, Third Edition:Shell Programming
www.eeworm.com/read/493005/6403654
define
NAME
define - command keyword to start a function definition
SYNTAX
define fname([param_1 [= default_1], ...]) = [expr]
define fname([param_1 [= default_1], ...]) { [statement_1 ... ] }
www.eeworm.com/read/487311/6519080
y ch3-01.y
%token NAME NUMBER
%%
statement: NAME '=' expression
| expression { printf("= %d\n", $1); }
;
expression: expression '+' NUMBER { $$ = $1 + $3; }
| expression '-' NUMBER { $$ = $1 - $3; }
| NUMB
www.eeworm.com/read/483659/6600379
y ch3-01.y
%token NAME NUMBER
%%
statement: NAME '=' expression
| expression { printf("= %d\n", $1); }
;
expression: expression '+' NUMBER { $$ = $1 + $3; }
| expression '-' NUMBER { $$ = $1 - $3; }
| NUMB
www.eeworm.com/read/479064/6698611
5 dhclient.conf.5
.\" dhclient.conf.5
.\"
.\" Copyright (c) 1996-2001 Internet Software Consortium.
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that t
www.eeworm.com/read/479166/6700268
cpp fig05_14.cpp
// Fig. 5.14: fig05_14.cpp
// continue statement terminating an iteration of a for statement.
#include
using std::cout;
using std::endl;
int main()
{
for ( int count = 1; count
www.eeworm.com/read/479166/6700271
cpp fig05_02.cpp
// Fig. 5.2: fig05_02.cpp
// Counter-controlled repetition with the for statement.
#include
using std::cout;
using std::endl;
int main()
{
// for statement header includes initi
www.eeworm.com/read/479166/6700272
cpp fig05_13.cpp
// Fig. 5.13: fig05_13.cpp
// break statement exiting a for statement.
#include
using std::cout;
using std::endl;
int main()
{
int count; // control variable also used after loo
www.eeworm.com/read/478645/6712153
txt flow control and exception handling.txt
作者:jeru
email: jeru@163.net
日期:7/3/2001 10:00:19 AM
2) Flow control and exception Handling
Objective 1)
Write code using if and switch statements and identify legal argument types for these stat