代码搜索:Programs

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

代码结果 10,000
www.eeworm.com/read/210671/15194034

cpp fig02_17.cpp

// Fig. 2.17: fig02_17.cpp // Counter-controlled repetition with the for structure #include using std::cout; using std::endl; int main() { // Initialization, repetition condit
www.eeworm.com/read/210671/15194035

cpp ex02_24.cpp

#include using std::cout; using std::endl; int main() { int count = 1; while ( count
www.eeworm.com/read/209265/15224293

c fdctref.c

/* fdctref.c, forward discrete cosine transform, double precision */ /* Copyright (C) 1994, MPEG Software Simulation Group. All Rights Reserved. */ /* * Disclaimer of Warranty * * These
www.eeworm.com/read/208576/15243592

cpp fig18_03.cpp

// Fig. 18.3: Fig18_03.cpp // Demonstrating string member function substr. #include using std::cout; using std::endl; #include using std::string; int main() { strin
www.eeworm.com/read/208576/15243601

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/208576/15243602

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/208576/15243611

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/208576/15243626

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/208576/15243649

cpp fig22_39.cpp

// Fig. 22.39: fig22_39.cpp // Using memchr. #include using std::cout; using std::endl; #include // memchr prototype using std::memchr; int main() { char s[] = "Th
www.eeworm.com/read/208576/15243663

cpp fig22_23.cpp

// Fig. 22.23: fig22_23.cpp // Using atoi. #include using std::cout; using std::endl; #include // atoi prototype using std::atoi; int main() { int i = atoi( "2593"