代码搜索:Exercise
找到约 10,000 项符合「Exercise」的源代码
代码结果 10,000
www.eeworm.com/read/451063/7472982
java gourmetcoffee.java
package exercise_4;
import java.io.*;
import java.util.*;
import java.text.*;
/**
* This class implements a gourmet coffee system.
*
* @author author name
* @version 1.1.0
* @see Produ
www.eeworm.com/read/446450/7578511
java quizaverage.java
// Exercise 14.12: QuizAverage.java
// Application enables a user to enter grades and have the average
// calculated.
import java.awt.*;
import java.awt.event.*;
import java.text.*;
import javax
www.eeworm.com/read/442446/7651635
java gourmetcoffee.java
package exercise_4;
import java.io.*;
import java.util.*;
import java.text.*;
/**
* This class implements a gourmet coffee system.
*
* @author author name
* @version 1.1.0
* @see Produ
www.eeworm.com/read/435150/7796136
h lengths.h
// Exercise 16.4 Lengths.h
// Length classes
#ifndef LENGTHS_H
#define LENGTHS_H
#include
using std::string;
// Class name declarations - we need these because we want to refer
//
www.eeworm.com/read/435150/7796145
h lengths.h
// Exercise 16.3 Lengths.h
// Length classes
#ifndef LENGTHS_H
#define LENGTHS_H
#include
using std::string;
// Class name declarations - we need these because we want to refer
//
www.eeworm.com/read/435150/7796146
h integer.h
// Exercise 12.3 Integer.h
#ifndef INTEGER_H
#define INTEGER_H
class Integer {
private:
int n;
public:
Integer(int m = 0);
Integer(Integer& obj); // Copy constructor
//
www.eeworm.com/read/435150/7796152
h integer.h
// Exercise 12.2 Integer.h
#ifndef INTEGER_H
#define INTEGER_H
class Integer {
private:
int n;
public:
Integer(int m = 0);
Integer(Integer& obj); // Copy constructor
www.eeworm.com/read/435150/7796164
h time.h
// Exercise 19.1 Time.h
// Definition of Time class
#ifndef TIME_H
#define TIME_H
#include
class Time {
public:
Time(): hours(0),minutes(0), seconds(0){} // Defaul
www.eeworm.com/read/435150/7796166
cpp time.cpp
// Exercise 19.1 Time.cpp
//Time class implementation File
#include "Time.h"
#include
#include
// Constructor
Time::Time(int h, int m, int s) {
seconds = s%60;