代码搜索:Exercise
找到约 10,000 项符合「Exercise」的源代码
代码结果 10,000
www.eeworm.com/read/332899/12718188
java ex28.java
// holding/Ex28.java
// TIJ4 Chapter Holding, Exercise 28, page 427
/* Fill a PriorityQueue (using offer()) with Double values created using
* java.util.Random, then remove the elements using poll(
www.eeworm.com/read/332899/12718194
java vowels16.java
// holding/Vowels16.java
// TIJ4 Chapter Holding, Exercise 16, page 419
/* Create a Set of the vowels. Working from UniqueWords.java, count and
* display the number of vowels in each input word, an
www.eeworm.com/read/332899/12718204
java sequence9.java
// holding/Sequence9.java
// TIJ4 Chapter Holding, Exercise 9, page 409
// Modify innerclasses/Sequence.java so that Sequence works with an Iterator
// instead of a Selector.
import java.util.*;
www.eeworm.com/read/332899/12718214
java ex15.java
// holding/Ex15.java
// TIJ4 Chapter Holding, Exercise 15, page 415
/* Stacks are often used to evaluate expressions in programming
* languages. Using net.mindview.util.Stack, evaluate the followin
www.eeworm.com/read/332899/12718229
java ex29.java
// holding/Ex29.java
// TIJ4 Chapter Holding, Exercise 29, page 427
/* Fill a PriorityQueue (using offer()) with Double values created using
* java.util.Random, then remove the elements using poll(
www.eeworm.com/read/332899/12718257
java testregularexpression11.java
// strings/TestRegularExpression11.java
// TIJ4 Chapter Strings, Exercise 11, page 533
/* Apply the regular expression:
* (?i)((^[aeiou])|(\s+[aeiou]))\W+?[aeiou]\b
* to
* "Arline ate eight ap
www.eeworm.com/read/332899/12718262
java startend13.java
// strings/StartEnd13.java
// TIJ4 Chapter Strings, Exercise 13, page 538
// Modify StartEnd.java so that it uses Groups.POEM as input, but still produces positive
// outputs for find(), lookingAt(
www.eeworm.com/read/332899/12718274
java receipt4.java
// strings/Receipt4.java
// TIJ4 Chapter Strings, Exercise 4, page 518
/* Modify Receipt.java so that the widths are all controlled by a single
* set of constant values. The goal is to allow you to
www.eeworm.com/read/332899/12718289
java ex17.java
// strings/Ex17.java
// TIJ4 Chapter Strings, Exercise 17, page 546
/* Write a program that reads a Java source-code file (you provide the
* file name on the command line) and displays all the
www.eeworm.com/read/332899/12718301
java ex19.java
// strings/Ex19.java
// TIJ4 Chapter Strings, Exercise 19, page 546
/* Building on the previous two exercises, write a program that examines
* Java source-code and produces all the class names used