代码搜索:statement
找到约 10,000 项符合「statement」的源代码
代码结果 10,000
www.eeworm.com/read/465477/6938100
txt rfc1370.txt
Network Working Group Internet Architecture Board
Request for Comments: 1370 Lyman Chapin, Chair
www.eeworm.com/read/408124/7154365
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/399312/7870817
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/399312/7870831
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/399312/7870839
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/296923/8070465
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
www.eeworm.com/read/245113/12819456
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
www.eeworm.com/read/142537/12941075
1 awk.1
.de EX
.nf
.ft CW
..
.de EE
.br
.fi
.ft 1
..
awk
.TH AWK 1
.CT 1 files prog_other
.SH NAME
awk \- pattern-directed scanning and processing language
.SH SYNOPSIS
.B awk
[
.BI \-F
.I fs
]
[
.BI \-v
.I v
www.eeworm.com/read/329257/12966987
txt code7.txt
Chapter 7
------------------------------
if Statement with One Criteria
------------------------------
if [ $Quantity -eq 100 ]
then
echo "The box is full."
fi
----------------------