代码搜索:println
找到约 10,000 项符合「println」的源代码
代码结果 10,000
www.eeworm.com/read/290185/8498545
java exercise 4.gourmetcoffee.java
import java.io.*;
import java.util.*;
import java.text.*;
/**
* This class implements a gourmet coffee system.
*
* @author Neil
* @version 1.1.0
* @see Product
* @see Coffee
* @see
www.eeworm.com/read/188932/8508021
java test.java
public class Test{
public static void main(String args[]){
Test t = new Test();
t.hanoi(5,'A','B','C');
}
public void hanoi(int num,char a,char b,
www.eeworm.com/read/188783/8515371
code chap17.code
listing 1
// Demonstrate ArrayList.
import java.util.*;
class ArrayListDemo {
public static void main(String args[]) {
// Create an array list.
ArrayList al = new Array
www.eeworm.com/read/389447/8519623
java fac5_11.java
//
//本程序取自王晓东编著“算法分析与设计”第 182 页,例
//电路板排列问题回溯解法
class Board{
static int n; //电路板数
static int m; //连接块数
static int[] x; //当前解
static int[] bestx; //当前最
www.eeworm.com/read/389293/8535521
java multidimwrapperarray.java
//: arrays/MultiDimWrapperArray.java
// Multidimensional arrays of "wrapper" objects.
import java.util.*;
public class MultiDimWrapperArray {
public static void main(String[] args) {
Inte
www.eeworm.com/read/389291/8535724
java pie.java
//: access/Pie.java
// The other class.
class Pie {
void f() { System.out.println("Pie.f()"); }
} ///:~
www.eeworm.com/read/289458/8549785
java finddifferentball.java
package my_temp_work;
public class FindDifferentBall {
public static int compare(int goal, int index) {
int temp = 100;
int[] ball = new int[12];
for(int i=0;i
www.eeworm.com/read/388997/8556125
java test136.java
class Test136 {
String title;
int value;
public Test136() {
title += "world";
}
public Test136(int value) {
this();
this.value = value;
title = "Hello";
// Test136()
www.eeworm.com/read/432914/8564627
java jobfarm.java
package chc;
import shared.LogOptions;
import java.net.ServerSocket;
import java.net.Socket;
import java.io.IOException;
/** JobFarms are designed to run on remote systems to help
* chc test Hypo
www.eeworm.com/read/432914/8564653
java testbitmask.java
package chc;
/** used to test the bitmask during development of chc.
*/
public class TestBitMask {
/** Constructed a new bit mask and then printed out the
* size and the values of all the m