代码搜索:Exercise
找到约 10,000 项符合「Exercise」的源代码
代码结果 10,000
www.eeworm.com/read/344238/11897889
java ex5.java
// holding/Ex5.java
// TIJ4 Chapter Holding, Exercise 5, page 406
/* Modify ListFeatures.java so that it uses Integers (remember
* autoboxing!) instead of Pets, and explain any difference in
* res
www.eeworm.com/read/344238/11897891
java ex24.java
// holding/Ex24.java
// TIJ4 Chapter Holding, Exercise 24, page 423
/* Fill a LinkedHashMap with String keys and objects of your choice.
* Now extract the pairs, sort them based on the keys
www.eeworm.com/read/344238/11897914
java statistics23.java
// holding/Statistics23.java
// TIJ4 Chapter Holding, Exercise 23, page 423
/* Starting with Statistics.java, create a program that runs the test repeatedly
* and looks to see if any one number ten
www.eeworm.com/read/344238/11897936
java ex1.java
// holding/Ex1.java
// TIJ4 Chapter Holding, Exercise 1, page 394
/* Create a new class called Gerbil with an int gerbilNumber that's
* initialized in the constructor. Give it a method called hop()
www.eeworm.com/read/344238/11897942
java randomshapegenerator31.java
// holding/shape/RcdandomShapeGenerator31.java
// TIJ4 Chapter Holding, Exercise 31, page 434
/* Modify polymorphism/shape/RandomShapeGenerator.java to make it
* Iterable. You'll need to add a cons
www.eeworm.com/read/344238/11897951
java replacing9.java
// strings/Replacing9.java
// TIJ4 Chapter Strings, Exercise 9, page 527
// Using the documentation for java.util.regex.Pattern as a resource,
// replace all the vowels in Splitting.knights with un
www.eeworm.com/read/344238/11897971
java jgrep16.java
// strings/JGrep16.java
// TIJ4 Chapter Strings, Exercise 16, page 546
/* Modify JGrep.java to accept a directory name or a file name as argument
* (if a directory is provided, search should includ
www.eeworm.com/read/344238/11898010
java enumex21.java
// initialization/EnumEx21.java
// TIJ4 Chapter Initialization, Exercise 21, page 207
/* Create an emun of the least-valuable six types of paper currency. Loop through
* the values() and print each
www.eeworm.com/read/256101/12028446
cpp ex04_22.cpp
// Exercise 4.22: ex04_22.cpp
// What does this program print?
#include
using std::cout;
using std::endl;
int main()
{
int row = 10; // initialize row
int column; // declare
www.eeworm.com/read/256101/12028449
cpp ex04_06.cpp
// Exercise 4.6 Solution: ex04_06.cpp
// Calculate the value of product and quotient.
#include
using std::cout;
using std::endl;
int main()
{
int x = 5;
int product = 5;