代码搜索:statement

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

代码结果 10,000
www.eeworm.com/read/155928/11837654

txt 6-8.txt

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

cpp 4elist0713.cpp

//Listing 7.13 //Demonstrates null statement // as body of for loop #include int main() { for (int i = 0; i
www.eeworm.com/read/344934/11851327

rpt qiangdaqi.map.rpt

Analysis & Synthesis report for qiangdaqi Wed Jul 16 10:34:13 2008 Version 5.1 Build 176 10/26/2005 SJ Full Version --------------------- ; Table of Contents ; --------------------- 1. Leg
www.eeworm.com/read/344934/11851393

qmsg prev_cmp_qiangdaqi.map.qmsg

{ "Info" "IQEXE_SEPARATOR" "" "Info: *******************************************************************" { } { } 3 0 "*******************************************************************" 0 0 "" 0 0
www.eeworm.com/read/258547/11856323

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/258547/11856353

txt 6-8.txt

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

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 % genera
www.eeworm.com/read/344450/11878451

rpt vga.map.rpt

Analysis & Synthesis report for vga Thu Jul 31 18:54:40 2008 Quartus II Version 6.1 Build 201 11/27/2006 SJ Full Version --------------------- ; Table of Contents ; --------------------- 1
www.eeworm.com/read/344238/11897759

java helloworld.java

// TIJ4 Chapter Object, Exericise 2, page 89 // object/HelloWorld.java // Following the HelloDate.java example in this chapter, create a "hello, world" // program that simply displays that statemen
www.eeworm.com/read/343933/11918947

txt 2.txt

学习目的:掌握php的流程控制 1、if..else 循环有三种结构 第一种是只有用到 if 条件,当作单纯的判断。解释成 "若发生了某事则怎样处理"。语法如下: if (expr) { <mark>statement</mark> } 其中的 expr 为判断的条件,通常都是用逻辑运算符号当判断的条件。而 <mark>statement</mark> 为符合条件的执行部分程序,若程序只有一行,可以省略大括号 ...