代码搜索:println
找到约 10,000 项符合「println」的源代码
代码结果 10,000
www.eeworm.com/read/292139/8375968
java mul99.java
public class Mul99
{
public static void main(String args[])
{
int i,j,n=9;
System.out.print(" * |");
for (i=1;i
www.eeworm.com/read/292139/8375981
java magic.java
//【例2.19】 显示幻方阵。
public class Magic
{
public static void main(String args[])
{
int n=3; //阶数
int mat[][] = new int [n][n];
int i=0,j=
www.eeworm.com/read/291966/8384794
java print24.java
public class Print24 {
/**
* @param args
*/
public void printResult1(int i,int a,int b){
switch(i/6){
case 0:
System.out.print("("+"("+a+"+"+b+")");
break;
case 1:
www.eeworm.com/read/192359/8384801
java compoundinterest.java
/**
* @version 1.2 27 Mar 1998
* @author Cay Horstmann
*/
import corejava.*;
public class CompoundInterest
{ public static double futureValue(double initialBalance,
double nyear
www.eeworm.com/read/192324/8386150
java caipiao2.java
class CaiPiao2
{
static int cp[]=new int[7];
static int cp1[]=new int[7];
static int level=0;
public static void main(String[] args)
{
buyCP();
kaiJiang();
printCP();
www.eeworm.com/read/192324/8386155
java cp.java
class Cp{
int cp1[]=new int[7];
int level=0;
Cp(){
buyCP();
}
void buyCP(){
System.out.println("请输入7个1~35之间的整数:");
for (int i=0; i
www.eeworm.com/read/192323/8386220
java cp.java
import KB.KB;
class CP{
int level=0;
int CPHM[]=new int [7];
void makeCP(){
System.out.println("请输入您要购买的号码(1-35之间):");
int i;
int m;
for (i=0;i
www.eeworm.com/read/391678/8391534
txt chap3-8.txt
// 程序3-8
public class hello{
public static void main ( String args[ ] ){
int i,j=0;
outer :
for(i=0;i
www.eeworm.com/read/391678/8391597
txt chap4-12.txt
// 程序4-12
class Base{ // 父类
int x=1; // 实例变量x
void print( ){ // 定义了print方法,输出当前对象的类名和变量x
System.out.println("当前类为 "+ this.getClass( ).getName( ));
System.out.println("
www.eeworm.com/read/391678/8391604
txt chap4-8.txt
// 程序4-8
class point{
int x, y;
point(int x, int y){ // point类构造函数
this.x=x;
this.y=y;
System.out.println("父类构造函数被调用!");
}
}
class