代码搜索:statement
找到约 10,000 项符合「statement」的源代码
代码结果 10,000
www.eeworm.com/read/425978/10298714
c vdbeapi.c
/*
** 2004 May 26
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness fo
www.eeworm.com/read/162314/10315413
cpp interpret.cpp
//interpret.cpp
#include "Interpret.h"
#include
using namespace std;
AbstractExpression::AbstractExpression()
{
}
AbstractExpression::~AbstractExpression()
{
}
void Abst
www.eeworm.com/read/161772/10375863
c forstate.c
/* Demonstrates a simple for statement */
#include
int count;
int main( void )
{
/* Print the numbers 1 through 20 */
for (count = 1; count
www.eeworm.com/read/161587/10395150
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/279369/10443199
bas case.bas
'-----------------------------------------------------
' (c) 1998-2000 MCS Electronics
' CASE.BAS demonstrates SELECT CASE statement
'-----------------------------------------------
www.eeworm.com/read/353439/10447348
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 stateme
www.eeworm.com/read/352425/10553667
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/160083/10573959
java createdatabase.java
import javax.swing.*;
import java.sql.*;
import java.io.*;
public class CreateDatabase
{
private String driver = "com.microsoft.jdbc.sqlserver.SQLServerDriver";
private String url = "jdbc:mi
www.eeworm.com/read/159990/10581387
java switch.java
//A simple switch statement
class Switch
{
public static void main(String args[])
{
for(int i=0; i
www.eeworm.com/read/159990/10581414
java return.java
//Return statement
class Return
{
public static void main(String args[])
{
boolean t = true;
System.out.println("Before the excution:");
if(t)
return;
System.out.println("After