代码搜索:boolean
找到约 10,000 项符合「boolean」的源代码
代码结果 10,000
www.eeworm.com/read/327332/13085316
java bestnode.java
public class BestNode {
int[][] m;
int n;
int node, cost;
BestNode(int[][] m, int n) {
this.m = m;
this.n = n;
}
int bestNode(int i, boolean[] b) {
BestWay bw = new BestWa
www.eeworm.com/read/327316/13087278
java recordstore1midlet.java
import javax.microedition.rms.*;
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
// A first MIDlet with simple text and a few commands.
public class RecordStore1MIDlet ext
www.eeworm.com/read/327316/13087293
java recordidmidlet.java
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
import javax.microedition.rms.*;
// A first MIDlet with simple text and a few commands.
public class RecordIDMIDlet extends M
www.eeworm.com/read/140258/13093817
bak paging.java.bak
//////////////////////////////////////////////////////////////////
//Operating System pratical 2 - Paging Simulation
//Student:Chin Peng, TSANG ; ID:1101151
//*****************************************
www.eeworm.com/read/327175/13096388
cpp p109.cpp
#include
#include
#include
#include "stack.h"
enum Boolean {False,True};
class Calculator{
public:
Calculator(int sz=20):s(sz){};
void Run();
www.eeworm.com/read/140204/13096427
pas xutils.pas
unit xUtils;
interface
uses Windows, Messages, Classes, SysUtils, Forms, Controls;
procedure MsgBox(const Msg: string);
procedure ErrBox(const Msg: string);
function YesNoBox(const Msg: str
www.eeworm.com/read/140204/13096445
pas xfiles.pas
unit xFiles;
interface
uses SysUtils, Windows, ShellAPI, Forms, Classes, Math, ActiveX, ComObj, Dialogs;
type
TEnumDirectoryFileProc = procedure (Filename: string; Attr: Integer; UserData:
www.eeworm.com/read/327120/13097919
java game.java
package example.tictactoe;
import java.util.Random;
//import javax.microedition.midlet.*;
//import javax.microedition.lcdui.*;
// The game logic for TicTacToe
class Game {
private static f
www.eeworm.com/read/327041/13102525
java one.java
import java.awt.*;
public class One
{
int BLACK=1;
int WHITE=2;
int BLANK=0;
Point OUT=new Point(-1,-1);
int whichStep;
int color=BLANK;
boolean isthere=false;
Point p