代码搜索:PROGRAMS

找到约 10,000 项符合「PROGRAMS」的源代码

代码结果 10,000
www.eeworm.com/read/131315/5943091

read-me

$Id: READ-ME,v 1.3 1992/10/26 16:57:51 jromine Exp $ [ READ-ME - Wed Sep 1 19:07:25 1993 - multi-media MH - /mtr ] NOTICE This package is openly available but is NOT in the public dom
www.eeworm.com/read/126641/6015744

readme

From Maurice Gittens -- Example programs, demonstrating some basic SSLeay crypto library operations, to help you not to make the same mistakes I did. The following files are pr
www.eeworm.com/read/124804/6040020

cpp fig16_06.cpp

// Fig. 16.6: fig16_06.cpp // Demonstrating a utility function // Compile with salesp.cpp #include "salesp.h" int main() { SalesPerson s; // create SalesPerson object s s.g
www.eeworm.com/read/124804/6040023

h time4.h

// Fig. 16.10: time4.h // Declaration of the Time class. // Member functions defined in time4.cpp // preprocessor directives that // prevent multiple inclusions of header file #ifndef TIME4_H
www.eeworm.com/read/124804/6040033

java initarray.java

// Fig. 25.16: InitArray.java // initializing an array with a declaration import javax.swing.*; public class InitArray { public static void main( String args[] ) { String output =
www.eeworm.com/read/124804/6040035

java sumarray.java

// Fig. 25.18: SumArray.java // Compute the sum of the elements of the array import javax.swing.*; public class SumArray { public static void main( String args[] ) { int a[] = { 1,
www.eeworm.com/read/124804/6040056

h circle2.h

// Fig. 19.7: circle2.h // Definition of class Circle #ifndef CIRCLE2_H #define CIRCLE2_H #include "point2.h" class Circle : public Point { public: // default constructor Circle( dou
www.eeworm.com/read/124804/6040058

h point2.h

// Fig. 19.7: point2.h // Definition of class Point #ifndef POINT2_H #define POINT2_H class Point { public: Point( int = 0, int = 0 ); // default constructor ~Point(); // destructor
www.eeworm.com/read/124804/6040070

cpp fig19_09.cpp

// Fig. 19.9: fig19_09.cpp // Driver for class Circle #include using std::cout; using std::endl; #include "point2.h" #include "circle2.h" int main() { Circle c( 2.5, 37, 4
www.eeworm.com/read/124804/6040077

cpp fig19_08.cpp

// Fig. 19.8: fig19_08.cpp // Driver for class Point #include using std::cout; using std::endl; #include "point2.h" int main() { Point p( 72, 115 ); // instantiate Point