代码搜索:Exercise
找到约 10,000 项符合「Exercise」的源代码
代码结果 10,000
www.eeworm.com/read/445981/7587005
log cc_build_debug.log
----------------------------- filter.pjt - Debug -----------------------------
"d:\program files\CCS for 5000\c5400\cgtools\bin\cl500" -g -q -fr"E:/dsp/EXERCISE/filter/Debug" -d"_DEBUG" -@"Debug.lk
www.eeworm.com/read/435150/7796167
h time.h
// Exercise 19.3 Time.h
// Definition of Time class File
#ifndef TIME_H
#define TIME_H
#include
class Time {
public:
Time(): hours(0),minutes(0), seconds(0){} // D
www.eeworm.com/read/435150/7796168
cpp main.cpp
// Exercise 19.3 Writing Time class 0bjects to a file.
#include "Time.h"
#include
#include
#include
#include
using std::cout;
using std::cin;
using s
www.eeworm.com/read/435150/7796170
h time.h
// Exercise 19.3a Time.h
// Definition of Time class File
#ifndef TIME_H
#define TIME_H
#include
class Time {
public:
Time(): hours(0),minutes(0), seconds(0){} //
www.eeworm.com/read/435150/7796172
cpp time.cpp
// Exercise 19.3a Time.cpp
// Time class implementation File
#include "Time.h"
#include
#include
// Constructor
Time::Time(int h, int m, int s) {
seconds = s%60;
www.eeworm.com/read/435150/7796173
h time.h
// Exercise 19.2 Time.h
// Definition of Time class File
#ifndef TIME_H
#define TIME_H
#include
class Time {
public:
Time(): hours(0),minutes(0), seconds(0){} // D
www.eeworm.com/read/435150/7796184
cpp main.cpp
// Exercise 11.3 Exercising SharedData - main.cpp
#include "shareddata.h"
#include
using std::cout;
using std::endl;
int main() {
int number = 99;
long lNumber = 9999999L;
d
www.eeworm.com/read/435150/7796213
cpp main.cpp
// Exercise 10.2 Using a global variable to count calls to print(). File: main.cpp
// Only this file and print.cpp are different from Ex 10.1.
#include "printthis.h"
#include "printthat.h"
#
www.eeworm.com/read/435150/7796270
h person.h
// Exercise 15.4 Person.h
// Person class and classes derived from Person
#ifndef PERSON_H
#define PERSON_H
#include
using std::string;
class Person {
public:
Person():age(0