代码搜索:Exercise
找到约 10,000 项符合「Exercise」的源代码
代码结果 10,000
www.eeworm.com/read/286193/4041807
h commission.h
// Exercise 22.12: Commission.h
// CommissionEmployee class derived from Employee.
#ifndef COMMISSION_H
#define COMMISSION_H
#include "Employee.h" // Employee class definition
class Commissi
www.eeworm.com/read/286193/4041808
cpp salaried.cpp
// Exercise 22.12: Salaried.cpp
// SalariedEmployee class member-function definitions.
#include // required to perform C++-style stream I/O
#include "Salaried.h" // SalariedEmployee clas
www.eeworm.com/read/286193/4041811
h phonenumber.h
// Exercise 22.13: PhoneNumber.h
// PhoneNumber class definition. Overloads the stream
// input and output operators.
#ifndef PHONE_NUMBER_H
#define PHONE_NUMBER_H
#include // requir
www.eeworm.com/read/286193/4041812
cpp phonenumber.cpp
// Exercise 22.13: PhoneNumber.cpp
// PhoneNumber class member-function and nonmember-function
// definitions.
#include // required to perform C++ stream I/O
#include "PhoneNumber.h" //
www.eeworm.com/read/286193/4041834
cpp shoppinglist.cpp
// Exercise 16.11: ShoppingList.cpp
// Enables users to add items to, remove items from and view items in
// a shopping list.
#include // required to perform C++-style stream I/O
#inclu
www.eeworm.com/read/286193/4041905
cpp encryption.cpp
// Exercise 4.17: Encryption.cpp
// Encrypts data given by user.
#include // required to perform C++ stream I/O
using namespace std; // for accessing C++ Standard Library members
www.eeworm.com/read/286002/4043423
m decoder_testsuite.m
function Decoder_TestSuite
RDir = fullfile ('test', 'ReferenceFiles');
FileNames = { ...
%
% ==== Exercise the 5.3 rate decoder, without CNG ====
%
{fullfile(RDir, 'DM29.C5H'); fullfile(RDir, 'DM29.
www.eeworm.com/read/417911/2096002
cpp guessnumber.cpp
// Exercise 3.38 Solution
// Randomly generate numbers between 1 and 1000 for user to guess.
#include
using std::cin;
using std::cout;
using std::endl;
#include
using std::rand;
www.eeworm.com/read/408033/2254507
groovy backgroundcontroller.groovy
import java.awt.Color
import nl.captcha.Captcha
import nl.captcha.backgrounds.*
import nl.captcha.servlet.CaptchaServletUtil
/**
* Exercise the various background renderers.
**/
class BackgroundCo
www.eeworm.com/read/405777/2283133
java booktest.java
package s2Java.sg.ch01.exercise;
class Book{
private String title;
private int pageNum;
public int getPageNum() {
return pageNum;
}
public void setPageNum(int pageNum) {
if(pageNum