代码搜索:20L
找到约 19 项符合「20L」的源代码
代码结果 19
www.eeworm.com/read/432630/8586052
pro chapter08ccuboidsub__define.pro
PRO Chapter08CCuboidSub__DEFINE
void = {Chapter08CCuboidSub, INHERITS Chapter08CCuboid, color:20L}
END
www.eeworm.com/read/295753/8142294
pro chapter08ccuboidsub__define.pro
PRO Chapter08CCuboidSub__DEFINE
void = {Chapter08CCuboidSub, INHERITS Chapter08CCuboid, color:20L}
END
www.eeworm.com/read/367307/9758138
pro chapter08ccuboidsub__define.pro
PRO Chapter08CCuboidSub__DEFINE
void = {Chapter08CCuboidSub, INHERITS Chapter08CCuboid, color:20L}
END
www.eeworm.com/read/247588/12639969
pro chapter08ccuboidsub__define.pro
PRO Chapter08CCuboidSub__DEFINE
void = {Chapter08CCuboidSub, INHERITS Chapter08CCuboid, color:20L}
END
www.eeworm.com/read/392975/8317453
second~
10L int a
20L int b = 4
22L int c
30L for a = b to 10 step 2
40L print a
41L for c = 1 to 3
42L print c
43L next
44L next
45L end
www.eeworm.com/read/392975/8317622
second
10L int a = 3
20L int b = 4
22L input b
30L int c
40L let c = ( a + 1 ) * b - 3
41L print c
42L end
www.eeworm.com/read/247171/4487143
vb integertypechartestc2.vb
Module M
Function Main() As Integer
Dim b%
b = 20L
End Function
End Module
www.eeworm.com/read/325143/13224322
java factorial.java
public class Factorial {
public static void main(String[] args) {
long limit = 20L; // Calculate factorials of integers up to this value
long factorial = 1L; // A factorial wil
www.eeworm.com/read/247171/4486956
vb integerliteral1test.vb
Imports System
Module IntegerLiteralTest
Function Main() As Integer
Dim i As Integer
Dim l As Long
Dim s As Short
l = 20L
s = 20S
i = 20I
End
www.eeworm.com/read/274525/10866682
java loopdgc.java
class factor
{ public long factorial(long n)
{ if(n==1) return 1;
else return n*factorial(n-1);
}
}
public class LoopDGc
{ public static void main(String args[])
{ long n=20l;
factor