代码搜索:println
找到约 10,000 项符合「println」的源代码
代码结果 10,000
www.eeworm.com/read/175325/9552206
java switchdemo.java
public class SwitchDemo {
public static void main(String[] args) {
int month = 8;
switch (month) {
case 1: System.out.println("January"); break;
case 2:
www.eeworm.com/read/175325/9552209
java breakdemo.java
public class BreakDemo {
public static void main(String[] args) {
int[] arrayOfInts = { 32, 87, 3, 589, 12, 1076,
2000, 8, 622, 127 };
int searchfor
www.eeworm.com/read/175325/9552217
java fordemo.java
public class ForDemo {
public static void main(String[] args) {
int[] arrayOfInts = { 32, 87, 3, 589, 12, 1076, 2000, 8, 622, 127 };
for (int i = 0; i < arrayOfInts.length; i++) {
www.eeworm.com/read/175324/9552219
java castingnumbers.java
////////////////////////////////////////////////
//Cast a float or double to an integral value
///////////////////////////////////////////////
//: c03:CastingNumbers.java
// What happens when y
www.eeworm.com/read/175324/9552221
java basicsdemo.java
public class BasicsDemo {
public static void main(String[] args) {
int sum = 0;
for (int current = 1; current
www.eeworm.com/read/175324/9552224
java datatypeprinttest.java
/************************************************
*Data Type Print Test
************************************************* */
/* From http://java.sun.com/docs/books/tutorial/index.html */
publi
www.eeworm.com/read/175324/9552227
java booleandemo.java
/**************************************************
* test the TYPE field of Boolean and test the methods of Class Object
*
****************************************************/
public class
www.eeworm.com/read/175324/9552231
java breakdemo.java
public class BreakDemo {
public static void main(String[] args) {
int[] arrayOfInts = { 32, 87, 3, 589, 12, 1076,
2000, 8, 622, 127 };
int searchfor
www.eeworm.com/read/175322/9552291
java bitwisedemo.java
public class BitwiseDemo {
static final int VISIBLE = 1;
static final int DRAGGABLE = 2;
static final int SELECTABLE = 4;
static final int EDITABLE = 8;
public static void main(S
www.eeworm.com/read/175322/9552292
java breakwithlabeldemo.java
public class BreakWithLabelDemo {
public static void main(String[] args) {
int[][] arrayOfInts = { { 32, 87, 3, 589 },
{ 12, 1076, 2000, 8 },