代码搜索:Exercise

找到约 10,000 项符合「Exercise」的源代码

代码结果 10,000
www.eeworm.com/read/256101/12028817

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/340916/12123345

cpp soln10_7.cpp

// Soln10_7.cpp // Storing phone numbers in a multimap - in fact two multimaps as in the previous exercise solution. #include "Person.h" #include using namespace cliext; typedef m
www.eeworm.com/read/339483/12231710

bash wgetter2.bash

#!/bin/bash # wgetter2.bash # Author: Little Monster [monster@monstruum.co.uk] # ==> Used in ABS Guide with permission of script author. # ==> This script still needs debugging and fixups (exercise f
www.eeworm.com/read/130612/14181015

java avoidoverwritingfile.java

// Chapter 9 Exercise 1 // To make it more sensible I added provision for the filepath to be a command line argument. // *** indicates modified or added code import java.io.File; import java.i
www.eeworm.com/read/130612/14181557

java writeproverbs.java

// Chapter 10 Exercise 1 // *** indicates modified or added code import java.io.*; import java.nio.*; import java.nio.channels.FileChannel; public class WriteProverbs { public static voi
www.eeworm.com/read/130612/14181572

java hexfiledump.java

// Chapter 11 Exercise 4 // Dumps the content of a file as hexadecimal import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException;
www.eeworm.com/read/214634/15092734

java multiplicationteacher.java

// Exercise 15.16: MultiplicationTeacher.java // This game asks the user to enter the product of two // randomly generated numbers in the range 0-9. import java.awt.*; import java.awt.event.*; im
www.eeworm.com/read/208576/15243611

cpp ex04_21.cpp

// Exercise 4.21: ex04_21.cpp // What does this program print? #include using std::cout; using std::endl; int main() { int count = 1; // initialize count while ( count
www.eeworm.com/read/208576/15244087

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/207217/15279274

cpp main.cpp

// Exercise 18.3 Exercising the SparseArray class template with the LinkedList class template // Add the SparseArrayT.h and LinkedListT.h files from ex18.1 and ex18.2 to this example. #include "Spar