代码搜索:statement

找到约 10,000 项符合「statement」的源代码

代码结果 10,000
www.eeworm.com/read/132697/14078284

h lxaccountstmtprint.h

// -*- C++ -*- // **************************************************************************** // // LxBank - home-banking for Linux using the HBCI standard // // Author: Franz Zimmermann
www.eeworm.com/read/235063/14086541

cpp properbraces.cpp

// Listing 4.6 - demonstrates proper use of braces // with an if statement #include int main() { int x; std::cout
www.eeworm.com/read/205013/15330196

tcl opcode.tcl

# # Run this Tcl script to generate the sqlite.html file. # set rcsid {$Id: opcode.tcl,v 1.15 2005/03/09 12:26:51 danielk1977 Exp $} source common.tcl header {SQLite Virtual Machine Opcodes} puts {
www.eeworm.com/read/202680/15375928

m randmcg.m

function r = randmcg(p,q) %RANDMCG Multiplicative congruential uniform random number generator. % Based on the parameters used by MATLAB version 4. % The statement % r = randmcg % generates a
www.eeworm.com/read/201477/15407765

cpp sumct1.cpp

// step count for sum of n numbers #include int count = 0; template T Sum(T a[], int n) {// Return sum of numbers a[0:n - 1]. T tsum = 0; count++; // for tsum
www.eeworm.com/read/200074/15441320

htm chapter 6 flow of control -- valvano.htm

Chapter 6: Flow of Control --
www.eeworm.com/read/113892/15444960

out aaa.out

0 const m=7;n=85 1 var x,y,z,q,r; ^ Error 5: Missing ',' or ';'. 1 1 procedure multiply; 1 var a,b; 2 begin ^ Error 7: Statement expected. 2 if a>0
www.eeworm.com/read/113490/15455073

txt 6-16.txt

/* 范例:6-16 */ #include #include void main() {/* 这是一个if的程序递归*/ int a; printf("请输入一值"); scanf("%d",&a); if(a>5) /* 将if (a>5) 的statement展开成为以下statement区块,变成一个if的程序递
www.eeworm.com/read/113490/15455082

txt 6-8.txt

/* 范例:6-8 */ #include int main() { int MySum=0; int a; for(a=1;a
www.eeworm.com/read/113211/15467077

txt yu1.txt

statement->if-stmt|other if-stmt->if ( exp ) statement else-part else-part->else statement|ε exp->0|1