代码搜索:statement
找到约 10,000 项符合「statement」的源代码
代码结果 10,000
www.eeworm.com/read/403009/11524756
cpp switch.cpp
// switch.cpp -- use the switch statement
#include
using namespace std;
void showmenu(); // function prototypes
void report();
void comfort();
int main()
{
showmenu();
in
www.eeworm.com/read/158029/11648628
java jdbcsample.java
import java.sql.*;
public class JDBCSample
{
private Statement stmt=null;
private Connection conn=null;
private ResultSet rs=null;
public JDBCSample()
{
t
www.eeworm.com/read/346994/11706272
c cont.c
/* Demonstrates the continue statement. */
#include
int main( void )
{
/* Declare a buffer for input and a counter variable. */
char buffer[81];
int ctr;
/* In
www.eeworm.com/read/157209/11730163
txt 伪随机比特发生器.txt
-- Pseudo Random Bit Sequence Generator
-- This design entity uses a single conditional signal assignment statement to describe a PRBSG register.
-- The length of the register and the two tapping p
www.eeworm.com/read/345690/11795143
txt 偽隨機比特發生器.txt
-- Pseudo Random Bit Sequence Generator
-- This design entity uses a single conditional signal assignment statement to describe a PRBSG register.
-- The length of the register and the two tapping p
www.eeworm.com/read/155858/11843110
cpp 4elist0404.cpp
// Listing 4.5 - demonstrates if statement
// used with relational operators
#include
int main()
{
using std::cout;
using std::cin;
int MetsScore, YankeesScore;
cout
www.eeworm.com/read/256463/11998210
java listing 11-1.java
import java.sql.*;
public class ModelA
{
private Connection Database;
private Statement DataRequest;
public ModelA ()
{
String url = "jdbc:odbc:CustomerInformation";
String us
www.eeworm.com/read/256463/11998537
java listing 10-16.java
String url = "jdbc:odbc:CustomerInformation";
String userID = "jim";
String password = "keogh";
String printrow;
String FirstName;
String LastName;
Statement DataRequest;
ResultSet Results;
Co