代码搜索:Programs
找到约 10,000 项符合「Programs」的源代码
代码结果 10,000
www.eeworm.com/read/188512/8533473
cpp fig05_14.cpp
// Fig. 5.14: fig05_14.cpp
// continue statement terminating an iteration of a for statement.
#include
using std::cout;
using std::endl;
int main()
{
for ( int count = 1; count
www.eeworm.com/read/188512/8533478
cpp fig05_02.cpp
// Fig. 5.2: fig05_02.cpp
// Counter-controlled repetition with the for statement.
#include
using std::cout;
using std::endl;
int main()
{
// for statement header includes initi
www.eeworm.com/read/188512/8533480
cpp ex05_07.cpp
// Exercise 5.7: ex05_07.cpp
// What does this program print?
#include
using std::cout;
using std::cin;
using std::endl;
int main()
{
int x; // declare x
int y; // declar
www.eeworm.com/read/188512/8533483
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/188512/8533489
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/188512/8533635
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/188512/8533649
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/188503/8535725
h mpeg2syntaxcodes.h
/* mpeg2syntaxcodes.h - Identifying bit-patterns and codes for MPEG2 syntax */
#ifndef _MPEG2SYNTAXCODES_H
#define _MPEG2SYNTAXCODES_H
/* Copyright (C) 1996, MPEG Software Simulation Group. All Righ
www.eeworm.com/read/187992/8582062
txt readme.txt
CEval - Algebraic expression evaluator class for VB5
Copyright (c) 1995-97 SoftCircuits Programming (R)
Redistributed by Permission.
This class implements an Algebraic expression evaluator for Vi
www.eeworm.com/read/387762/8655445
txt readme.txt
README.txt file:
Source code directory for "A Practical Introduction to Data Structures
and Algorithms, 2nd Edition" by Clifford A. Shaffer
This directory contains a series of programs based on