代码搜索:Exercise
找到约 10,000 项符合「Exercise」的源代码
代码结果 10,000
www.eeworm.com/read/352425/10553881
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/352425/10553889
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/352425/10553906
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/352425/10553924
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/352425/10553935
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
www.eeworm.com/read/352425/10553998
java varargex19.java
// initialization/VarargEx19.java
// TIJ4 Chapter Initialization, Exercise 19, page 204
/* Write a method that takes a vararg String array. Verify that you can pass
* either a comma-separated list
www.eeworm.com/read/422253/10651983
txt 13-11.txt
PE 13-11
/* Programming Exercise 13-11 */
#include
#include
#include /* Macintosh adjustment */
#define SLEN 256
const char *errmesg[] = {"Usage: %
www.eeworm.com/read/419026/10889125
java testauthor.java
//Exercise 7.2
public class TestAuthor {
public static void main(String[] args) {
Author author = new Author("Tan Ah Teck", "ahteck@abc.com");
System.out.println(author.getName());
Syste
www.eeworm.com/read/272118/10969406
java suin.java
21Concurrency
Exercise 12:(3)Repair AtomicityTest.java using the synchronized keyword.Can you demonstrate that it is now correct?
import java.util.concurrent.ExecutorService;
import java.util.concu
www.eeworm.com/read/364251/7075992
py xpath.py
#!/usr/bin/python -u
#
# this test exercise the XPath basic engine, parser, etc, and
# allows to detect memory leaks
#
import sys
import libxml2
# Memory debug specific
libxml2.debugMemory(1)
doc =