代码搜索:F
找到约 10,000 项符合「F」的源代码
代码结果 10,000
www.eeworm.com/read/470693/1460331
f 9263.f
PARAMETER (Q=1)
PARAMETER (P=10)
INTEGER C(10),D(10),E(10),F(10)
DATA (C(I),I=1,P) /10*10/ ! TERMINAL NOT INTEGER
DATA (D(I),I=Q,10) /10*10/ ! START NOT INTEGE
www.eeworm.com/read/470693/1460339
f 20010115.f
* GNATS PR Fortran/1636
PRINT 42, 'HELLO'
42 FORMAT(A)
CALL WORLD
END
SUBROUTINE WORLD
PRINT 42, 'WORLD'
42 FORMAT(A)
END
www.eeworm.com/read/470693/1460342
f 20000518.f
SUBROUTINE SORG2R( K, A, N, LDA )
* ICE in `verify_wide_reg_1', at flow.c:2605 at -O2
* g77 version 2.96 20000515 (experimental) on i686-pc-linux-gnu
*
* Originally derived from LAPACK 3.0 te
www.eeworm.com/read/470693/1460353
f 20010426.f
function f(c)
implicit none
real*8 c, f
f = sqrt(c)
return
end
www.eeworm.com/read/469247/1481962
m f.m
function y=f(x)
if x==1
y=2;
end
if x==2
y=3;
end
if x==3
y=4;
end
if x==4
y=1;
end
www.eeworm.com/read/462666/1543887
c f.c
/*
* (c) Copyright 1993, Silicon Graphics, Inc.
* ALL RIGHTS RESERVED
* Permission to use, copy, modify, and distribute this software for
* any purpose and without fee is hereby granted, pro
www.eeworm.com/read/461848/1549611
m to_f.m
function deg_f = to_f(deg_c)
% Convert degrees Celsius to degrees Fahrenheit.
deg_f = (9/5) * deg_c + 32;