代码搜索:implicit

找到约 5,250 项符合「implicit」的源代码

代码结果 5,250
www.eeworm.com/read/335984/12485225

asm expimp.asm

; ; Test of explicitly and implicitly sized operands ; add esi,2 ; Implicit add esi,123456h ; Implicit add esi,byte 2 ; Explicit add esi,dword 2 ; Explicit add esi,dword 123456h ;
www.eeworm.com/read/335542/12517577

cpp implicitcast.cpp

//: C05:ImplicitCast.cpp // From "Thinking in C++, Volume 2", by Bruce Eckel & Chuck Allison. // (c) 1995-2004 MindView, Inc. All Rights Reserved. // See source code use permissions stated in the f
www.eeworm.com/read/300492/13910123

cpp implicitcast.cpp

//: C05:ImplicitCast.cpp // From "Thinking in C++, Volume 2", by Bruce Eckel & Chuck Allison. // (c) 1995-2004 MindView, Inc. All Rights Reserved. // See source code use permissions stated in the f
www.eeworm.com/read/105750/15659715

txt rfc1155-smi.txt

RFC1155-SMI DEFINITIONS ::= BEGIN EXPORTS -- EVERYTHING internet, directory, mgmt, experimental, private, enterprises, OBJECT-TYPE, ObjectName, ObjectSyntax, SimpleSyntax
www.eeworm.com/read/183624/9147277

f90 ex0605.f90

program ex0605 implicit none real, parameter :: weight=45.0 real, parameter :: e = 0.001 real :: guess = 0.0 do while( abs(guess-weight) > e ) write(*,*) "Weight:" read(*,*) g
www.eeworm.com/read/376037/9335345

f90 sgldraw4.f90

module sgl_util use sgl implicit none contains subroutine Display() call sglClearBuffer() call sglColor3f(1.0,0,0) call sglFilledRect(100,100, 120,200) ! 蜡烛 call sglFilledRectV(
www.eeworm.com/read/376037/9335429

f90 ex0605.f90

program ex0605 implicit none real, parameter :: weight=45.0 real, parameter :: e = 0.001 real :: guess = 0.0 do while( abs(guess-weight) > e ) write(*,*) "Weight:" read(*,*) g
www.eeworm.com/read/376037/9335464

f90 linear.f90

program main use IMSL implicit none real :: A(3,3) = (/ 1,3,2,& 1,2,1,& 2,1,3 /) real :: B(3,1) = (/ 4,6,6 /) real :: X(3,1) call lin_sol_gen(A,B,X)
www.eeworm.com/read/358844/10178018

f90 ans0703.f90

program main implicit none integer, parameter :: max=10 integer f(max) integer i f(1)=0 f(2)=1 do i=3,max f(i)=f(i-1)+f(i-2) end do write(*,"(10I4)") f
www.eeworm.com/read/433872/7076750

hpp sctconst.hpp

// Borland C++ Builder // Copyright (c) 1995, 1998 by Borland International // All rights reserved // (DO NOT EDIT: machine generated header) 'SctConst.pas' rev: 3.00 #ifndef SctConstHPP #def