代码搜索:Programs

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

代码结果 10,000
www.eeworm.com/read/399312/7870839

cpp fig05_13.cpp

// Fig. 5.13: fig05_13.cpp // break statement exiting a for statement. #include using std::cout; using std::endl; int main() { int count; // control variable also used after loo
www.eeworm.com/read/399312/7870864

cpp fig05_05.cpp

// Fig. 5.5: fig05_05.cpp // Summing integers with the for statement. #include using std::cout; using std::endl; int main() { int total = 0; // initialize total // total e
www.eeworm.com/read/399309/7870909

cpp fig04_18.cpp

// Fig. 4.18: fig04_18.cpp // Test program for class Analysis. #include "Analysis.h" // include definition of class Analysis int main() { Analysis application; // create Analysis object
www.eeworm.com/read/399309/7870912

h analysis.h

// Fig. 4.16: Analysis.h // Definition of class Analysis that analyzes examination results. // Member function is defined in Analysis.cpp // Analysis class definition class Analysis { public:
www.eeworm.com/read/399309/7870947

cpp ex04_21.cpp

// Exercise 4.21: ex04_21.cpp // What does this program print? #include using std::cout; using std::endl; int main() { int count = 1; // initialize count while ( count
www.eeworm.com/read/399308/7871028

cpp fig03_13.cpp

// Fig. 3.13: fig03_13.cpp // GradeBook class demonstration after separating // its interface from its implementation. #include using std::cout; using std::endl; #include "GradeBo
www.eeworm.com/read/399305/7871072

cpp fig02_04.cpp

// Fig. 2.4: fig02_04.cpp // Printing multiple lines of text with a single statement. #include // allows program to output data to the screen // function main begins program execution
www.eeworm.com/read/399305/7871088

cpp fig02_01.cpp

// Fig. 2.1: fig02_01.cpp // Text-printing program. #include // allows program to output data to the screen // function main begins program execution int main() { std::cout
www.eeworm.com/read/196846/8054722

h mpeg2dec.h

/* mpeg2dec.h, MPEG specific defines */ /* Copyright (C) 1996, MPEG Software Simulation Group. All Rights Reserved. */ /* * Disclaimer of Warranty *
www.eeworm.com/read/196846/8054770

c fdctref.c

/* fdctref.c, forward discrete cosine transform, double precision */ /* Copyright (C) 1996, MPEG Software Simulation Group. All Rights Reserved. */ /* * Disclaimer of Warranty *