代码搜索:statement
找到约 10,000 项符合「statement」的源代码
代码结果 10,000
www.eeworm.com/read/127662/14342965
java borrow.java
package lib;
import java.sql.*;
public class Borrow {
private Connection connection = null;
private Statement statement = null;
private ResultSet resultSet = null;
private int bookID;
www.eeworm.com/read/228991/14356183
txt ch8.txt
Chapter 8
---------------------------
Multiple if elif Statements
---------------------------
if [ $region -eq "1" ]
then
echo "Hello, Bob"
elif [ $region -eq "2" ]
then
ech
www.eeworm.com/read/228991/14356185
txt ch9.txt
Chapter 9
------------
if Statement
------------
if [ $office -eq "1" ]
then
echo "Hello, Bob."
else
echo "Sorry, your region is not on my list."
fi
--------------
case Statemen
www.eeworm.com/read/228620/14375010
e a51.e
*** ERROR #A9 IN 1 (C:\lope\noname.asm, LINE 1): SYNTAX ERROR
*** ERROR #A9 IN 2 (C:\lope\noname.asm, LINE 2): SYNTAX ERROR
*** ERROR #A9 IN 3 (C:\lope\noname.asm, LINE 3): SYNTAX ERROR
*** ERROR #
www.eeworm.com/read/126322/14430110
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/126322/14430126
txt 6-8.txt
/* 范例:6-8 */
#include
int main()
{
int MySum=0;
int a;
for(a=1;a
www.eeworm.com/read/225703/14523276
codingstyle
These are the formatting rules for mpeg2dec code. Please try to follow
these for any new contributions:
* Code should not be wider than 79 columns.
* A tab character should be displayed as 8 columns
www.eeworm.com/read/124669/14555083
cpp connection.cpp
/*
Copyright (c) 2003, Confident Outsourcing
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following co
www.eeworm.com/read/224612/14580222
cpp ex3_08.cpp
// EX3_08.CPP
// Summing integers with a for loop
#include
using namespace std;
int main()
{
int i = 0, sum = 0;
const int max = 10;
for(i = 1; i
www.eeworm.com/read/123850/14609349
txt jdbctm 指南:入门6 - preparedstatement.txt
作者:jeru
日期:2000-12-9 21:28:13
6 - PreparedStatement
本概述是从《JDBCTM Database Access from JavaTM: A Tutorial and Annotated Reference 》这本书中摘引来的。JavaSoft 目前正在准备这本书。这是一本教程,同时也是 JDBC 的重要参考手册,它将作为 Java 系列的组