代码搜索:println
找到约 10,000 项符合「println」的源代码
代码结果 10,000
www.eeworm.com/read/306033/13754659
pb basic_ifdef.pb
#define abc
#ifdef abc
println 123
#else
println 456
#endif
#undef abc
#ifdef abc
println 123
#else
println 456
#endif
www.eeworm.com/read/306033/13754779
js javascript_ifdef.js
#define abc
#ifdef abc
println 123;
#else
println 456;
#endif
#undef abc
#ifdef abc
println 123;
#else
println 456;
#endif
www.eeworm.com/read/306033/13754784
pc c_ifdef.pc
#define abc
#ifdef abc
println 123;
#else
println 456;
#endif
#undef abc
#ifdef abc
println 123;
#else
println 456;
#endif
www.eeworm.com/read/306033/13754742
js javascript_lists.js
println 'Create a list';
L = [100, [200, [300, null]]];
println L;
println 'Insert new item at the beginning';
L = [50, L];
println L;
println 'Add new item at the end';
P = & L; // Create
www.eeworm.com/read/187222/8841035
java namecollector.java
//: NameCollector.java
//////////////////////////////////////////////////
// Copyright (c) Bruce Eckel, 1998
// Source code file from the book "Thinking in Java"
// All rights reserved EXCEPT as a
www.eeworm.com/read/377968/9255266
java count.java
class Matrix{
int n;
int s[][];
public Matrix(int n,int s[][]){
this.n=n;
this.s=s; }
public Matrix(){}
public Matrix add(Matrix a,Matrix b){
for(int i=0;i
www.eeworm.com/read/175334/9551193
java myclass.java
// This shows off the uses of this
// This shows off the uses of "this". It is a non-public class
// just so the file name UseThis doesn't have to be the class name
// (some students found "This
www.eeworm.com/read/167540/9964069
c- c-assign.c-
/*
* test assignment
*
*/
int main()
{
int a=100,b=4;
a+=b;
a-=b;
a*=b;
a/=b;
println(a);
return 0;
}
www.eeworm.com/read/167540/9964129
c- c-optimise.c-
/*
*
* test optimisation
*
*
*
*/
int main()
{
int a=5,b;
b=10;
a=a+5+5*6;
if(a)
println(a);
return 0;
}
www.eeworm.com/read/167540/9964158
c- c-for.c-
/*
*
* test for loop
*
*
*/
int main()
{
int i, a=0;
for(i=0;i