代码搜索:F
找到约 10,000 项符合「F」的源代码
代码结果 10,000
www.eeworm.com/read/278404/4146006
f run.f
//-f ./unisims.f
//-f ./simprims.f
../sim_define.v
../board_common.v
// PCI-Express 1 Lane Endpoint Reference Design
//----------------------------------------------
../../example_design
www.eeworm.com/read/271683/4225368
java f.java
public class f{
public int xy(int x,int y){
int m;
m=4*x*x+5*y*y+2*x*y;
return m;
}
}
www.eeworm.com/read/268796/4249988
dash-f
$description = "The following test tests that if you specify greater \n"
."than one '-f makefilename' on the command line, \n"
."that make concatenates them. This test cre
www.eeworm.com/read/442486/1760127
java f.java
interface D{
int age = 5;
}
interface E{
int age = 6;
}
class F implements D,E{
public static void main(String args[]){
System.out.println(D.age);
System.out.println(E.age);
//Syste
www.eeworm.com/read/440906/1778404
f 20010610.f
DO I = 0, 255
IF (ICHAR(CHAR(I)) .NE. I) CALL ABORT
ENDDO
END
www.eeworm.com/read/440906/1778409
f le.f
program fool
real foo
integer n
logical t
foo = 2.5
n = 5
t = (n > foo)
if (t .neqv. .true.) call abort
t = (n >= foo)
if (t .neqv.
www.eeworm.com/read/440906/1778413
f 947.f
DIMENSION A(-5:5)
INTEGER*1 IM5, IZ, IP5
INTEGER*2 IM1, IP1
PARAMETER (IM5=-5, IM1=-1, IZ=0, IP1=1, IP5=5)
DATA A(IM5) /-5./, A(IM1) /-1./
DATA A(IZ) /0./
DA
www.eeworm.com/read/440906/1778414
f 20001111.f
DOUBLE PRECISION VALUE(2), TOLD, BK
DATA VALUE /0D0, 1D0/
DATA TOLD /0D0/
DO I=1, 2
BK = VALUE(I)
IF(BK .GT. TOLD) GOTO 10
ENDDO
WRITE(*,*)'Error: