代码搜索:println
找到约 10,000 项符合「println」的源代码
代码结果 10,000
www.eeworm.com/read/169056/9884315
java showchar.java
public class ShowChar
{
public static void main(String[] args)
{
char ch; // this declares a character variable
ch = 'a'; // store the letter a into ch
System.out.prin
www.eeworm.com/read/169056/9884317
java subtotals.java
public class SubTotals
{
public static void main(String[] args)
{
int sum;
sum = 0;
System.out.println("The value of sum is initially set to " + sum);
sum = sum + 96;
www.eeworm.com/read/169056/9884331
java rectanglearea.java
// this program calculates the area of a rectangle
// given its length and width
public class RectangleArea
{
public static void main(String[] args)
{
double length, width, area;
le
www.eeworm.com/read/167540/9964104
c- c-array.c-
/*
* test array
*
*
*
*/
int main()
{
int index[2];
index[0]=5;
index[1]=index[0]+5;
println("index[0]="~index[0]~"\nindex[1]="~index[1]);
return 0;
}
www.eeworm.com/read/167540/9964156
c- c-cast.c-
/*
*
* test coercion for int and float
*
*
*/
int main()
{
int i;
float f;
i = 10;
f= 5.5;
f= i+f*2;
println(f);
return 0;
}
www.eeworm.com/read/166238/10027779
java sushu.java
public class sushu
{
public static void main(String args[])
{
boolean x = true;
int k = 0;
for(int i = 2; i
www.eeworm.com/read/361386/10055797
java emit.java
package java_cup;
import java.io.PrintWriter;
import java.util.Stack;
import java.util.Enumeration;
import java.util.Date;
/**
* This class handles emitting generated code for the resulting parser
www.eeworm.com/read/359548/10139774
java comparepointobjects2.java
public class ComparePointobjects2 {
public static void main(String[] args) {
Point pointOne = new Point(10, 100);
Point pointTwo = new Point(10, 100);
Point pointThree = new Point(50, 500
www.eeworm.com/read/359548/10139884
java comparepointobjects1.java
public class ComparePointobjects1 {
public static void main(String[] args) {
Point pointOne = new Point(10, 100);
Point pointTwo = new Point(10, 100);
Point pointThree = pointOne;
if
www.eeworm.com/read/426363/10257099
java serialconnection.java
import javax.comm.*;
import java.io.*;
import java.awt.TextArea;
import java.awt.event.*;
import java.util.TooManyListenersException;
/**
A class that handles the details of a serial connection. Read