代码搜索:Exercise
找到约 10,000 项符合「Exercise」的源代码
代码结果 10,000
www.eeworm.com/read/344238/11898000
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/344238/11898026
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/256101/12028443
cpp ex04_05.cpp
// Exercise 4.5 Solution: ex04_05.cpp
// Calculate the sum of the integers from 1 to 10.
#include
using std::cout;
using std::endl;
int main()
{
int sum; // stores sum of intege
www.eeworm.com/read/256101/12028717
cpp ex06_50.cpp
// Exercise 6.50: ex06_50.cpp
// What does this program do?
#include
using std::cout;
using std::cin;
using std::endl;
int mystery( int, int ); // function prototype
int ma
www.eeworm.com/read/130612/14181190
java squarewindow.java
// Chapter 16 Exercise 5
// Adding apulldown menu and accelerators to the Edit menu
import javax.swing.JFrame;
import javax.swing.Box;
import javax.swing.JButton;
import javax.swing.JMenuBar;
www.eeworm.com/read/130612/14181507
java formattedwriter.java
// Chapter 8 Exercise 1
import java.io.PrintWriter;
import java.io.Writer;
public class FormattedWriter extends PrintWriter {
public final static int LEFT_JUSTIFIED = 1;
public final stati
www.eeworm.com/read/130612/14181576
java bankoperation.java
// Chapter 15 Exercise 2
/*
The clerks now have names so we can identify who is doing what.
*/
import java.util.Random;
public class BankOperation {
public static void main(String[] args) {
www.eeworm.com/read/130612/14181604
java zodiacsigns.java
// Chapter 14 Exercise 3
// Determines the sign of the Zodiac for a given date.
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
import java.util.Grego
www.eeworm.com/read/130612/14181633
java tryphonebook.java
// Chapter 13 Exercise 4
/*
To allow searching using just a second name we need a new strategy for
how we store entries in the map. We can't just add second names as keys
since it is more
www.eeworm.com/read/231819/14218488
cpp ex7_11.cpp
/* Code for exercise 7.11.
|
| "C++ Solutions--Companion to The C++ Programming Language, Third Edition"
| by David Vandevoorde; Addison-Wesley 1998; ISBN 0-201-30965-3.
|
| Permission to use, c