代码搜索:println

找到约 10,000 项符合「println」的源代码

代码结果 10,000
www.eeworm.com/read/296681/8082326

java webproxyserver.java

import java.io.*; import java.net.*; import java.util.StringTokenizer; /** * A Web proxy server which is both a client and a server at the same time. * * @autho
www.eeworm.com/read/196362/8097117

java shortadd.java

//&& class ShortAdd{ public static void main(String[] args){ int denom = 0,num = 12; if(denom != 0 && num / denom > 10) System.out.println("This is right !"); else System.out.pri
www.eeworm.com/read/196362/8097139

java boolean.java

//demonstrate boolean values class boolleandemo { public static void main(String[] args) { boolean b = false; System.out.println("b is " + b); b = true; System.out.printl
www.eeworm.com/read/196362/8097243

java fandemo.java

class Fan { private int speed = 0; private boolean on = false; private double radius = 50; public Fan(int speed, boolean on, double radius) { this.speed = speed; this.on = on; this.
www.eeworm.com/read/196362/8097614

java sampleswitch.java

class SampleSwitch{ public static void main(String[] args){ for(int i = 0;i < 6;i++){ switch(i) { case 0: System.out.println("The i is zero."); break; case 1: Sy
www.eeworm.com/read/296295/8110976

java event handling-eventex3.java

/* License * * Copyright 1994-2004 Sun Microsystems, Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that
www.eeworm.com/read/296265/8113715

java diamond5.java

public class Diamond5 { public static void main(String args[]) { if(args.length == 1) { double N = Double.parseDouble(args[0]); int X=(int)N;
www.eeworm.com/read/145817/12700689

java queen.java

// =============== Program Description =============== // 程序名称: queen.java // 程序目的: 运用递归来解N皇后问题 // Written By Kuo-Yu Huang. (WANT Studio.) // ========================
www.eeworm.com/read/333003/12711613

java ex20(1).java

// generics/Ex20.java // TIJ4 Chapter Generics, Exercise 20, page 654 /* Create an interface with two methods, and a class that implements that interface * and adds another method. In another class
www.eeworm.com/read/333003/12711687

java classinfo.java

// typeinfo/ClassInfo.java // TIJ4 Chapter TypeInfo, Exercise 20, page 593 /* Look up the interface for java.lang.Class in the JDK decumentation from * http://java.sun.com. Write a program that ta