代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/358842/10178036
f90 ans0504.f90
program main
implicit none
integer year, days
logical mod_4, mod_100, mod_400
write(*,*) "请输入年份"
read(*,*) year
mod_4 = ( MOD(year,4) == 0 )
mod_100 = ( MOD(year,100) == 0 )
www.eeworm.com/read/423354/10569075
f90 code29.f90
!!!!!!!!!!!!!!!!!!!!!!!!!!! Program 2.9 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
www.eeworm.com/read/423354/10569076
f90 code32.f90
!!!!!!!!!!!!!!!!!!!!!!!!!!! Program 3.12 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
www.eeworm.com/read/358839/7139883
acf hello.acf
[implicit_handle(handle_t hello_IfHandle)]
interface hello
{
}
www.eeworm.com/read/452050/7450745
cpp 2883893_ce.cpp
PROGRAM P1000
IMPLICIT NONE
INTEGER A,B
READ (*,*)::A,B
WRITE (*,"(10)") A+B
END PROGRAM P1000
www.eeworm.com/read/452050/7450746
f90 2883896_ce.f90
PROGRAM P1000
IMPLICIT NONE
INTEGER A,B
READ (*,*)::A,B
WRITE (*,"(10)") A+B
END PROGRAM P1000
www.eeworm.com/read/439439/7708874
cpp euler.cpp
#inculde
#include
using namespace std;
#define N 9 //step length
#define E 0.00001 //presicion 10-5
double g(double x) //y=g(x)
{return pow(((x*x+2)/3),3
www.eeworm.com/read/145002/12757432
cce sd_rw2.cce
Warning[000] SD_RW2.c 302 : function declared implicit int
www.eeworm.com/read/244744/12845921
f cosqb.f
SUBROUTINE COSQB (N,X,WSAVE)
IMPLICIT DOUBLE PRECISION (A-H, O-Z)
DIMENSION X(1) ,WSAVE(1)
DATA TSQRT2 /2.82842712474619d0/
IF (N-2) 101,102,103
101 X(1) =
www.eeworm.com/read/324367/13268482
txt pgm05_08.txt
//
// This file contains the C# code from Program 5.8 of
// "Data Structures and Algorithms
// with Object-Oriented Design Patterns in C#"
// by Bruno R. Preiss.
//
// Copyright (c) 2001--2