代码搜索:Exercise
找到约 10,000 项符合「Exercise」的源代码
代码结果 10,000
www.eeworm.com/read/207217/15279280
cpp ex3_02.cpp
// Exercise 3.2 Calculating the number of boxes that can be stored on a shelf,
// without overhang. We have to calculate how many boxes we can get into a row,
// and how many rows we can have, and t
www.eeworm.com/read/207217/15279292
h animals.h
// Exercise 16.1 Animals.h
// Animal classes and class defining a Zoo
#ifndef ANIMALS_H
#define ANIMALS_H
#include
using std::string;
class Animal {
public:
Animal(string the
www.eeworm.com/read/207217/15279310
cpp main.cpp
// Exercise 20.5 Updating Ex20.4 to use a multimap
#include
#include
#include
#include
using std::cout;
using std::cin;
using std::endl;
using std::string
www.eeworm.com/read/207217/15279389
cpp ex8_03.cpp
// Exercise 8.3 Checking the number of arguments entered at the command line.
#include
using std::cout;
using std::endl;
int main(int argc, char* argv[]) {
switch(argc-1) {
c
www.eeworm.com/read/207217/15279390
cpp ex8_04.cpp
// Exercise 8.4 Using reverse() from Ex 8.2 to reverse a command line argument.
#include
#include
using std::cout;
using std::endl;
using std::string;
string reverse(strin
www.eeworm.com/read/207217/15279410
cpp ex6_01.cpp
// Exercise 6.1 Using a pair of arrays to store a 'grade book' for up to ten students.
#include
#include
using std::cout;
using std::cin;
using std::endl;
using std::string;
www.eeworm.com/read/207217/15279430
cpp ex5_01.cpp
// Exercise 5.1 Squaring odd numbers
#include
#include
using std::cout;
using std::cin;
using std::endl;
using std::setw;
int main() {
int limit = 0;
cout
www.eeworm.com/read/207217/15279435
cpp main.cpp
// Exercise 13.4 Creating and Testing the MyString class - main.cpp
#include "MyString.h"
#include
using std::cout;
using std::endl;
int main() {
mySpace::MyString proverb("Too ma
www.eeworm.com/read/484998/1264631
java agendaclient.java
package Exercise4;
import java.rmi.*;
import java.text.*;
public class AgendaClient {
public AgendaClient() {
}
public static void main(String args[]) {
System.out.println("Look
www.eeworm.com/read/484998/1264633
java agendaservice.java
package Exercise4;
import java.rmi.*;
import java.rmi.server.*;
public class AgendaService {
public AgendaService() {
}
public static void main(String args[]) {
System.out.print