代码搜索:Exercise

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

代码结果 10,000
www.eeworm.com/read/434781/7802101

java doctest.java

// object.DocTest.java // TIJ4 Chapter Object, Exercise 12, page 90 /* Find the code for the second version of HelloDate.java, which is the simple * comment documentation example. Execute Javadoc o
www.eeworm.com/read/199568/7844816

java mathtest.java

// Exercise 6.3: MathTest.java // Testing the Math class methods. public class MathTest { public static void main( String args[] ) { System.out.printf( "Math.abs( 23.7 ) = %f\n",
www.eeworm.com/read/399309/7870938

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/399309/7870942

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;
www.eeworm.com/read/197407/7999026

cpp btsp2.cpp

// test modified backtracking traveling salesperson // Exercise 16.15 #include #include "awd2.h" void main(void) { AdjacencyWDigraph G(7); int n = 7, p[8]; cout
www.eeworm.com/read/396481/8104703

java test1.java

package exercise1; public class Test1 { /** * @param args */ public final static int MAXSIZE = 255; public final static int LIMITLAYER = 14; public static void main(String[] args) {
www.eeworm.com/read/146126/12669031

cpp d.cpp

// function for Chapter 2 exercise #include #include using namespace std; void d(int x[], int n) { for (int i = 0; i < n; i += 2) x[i] += 2; i = 1;
www.eeworm.com/read/333505/12678220

java movietransaction.java

import java.util.*; import java.io.*; import java.text.*; import java.sql.*; /** * A class representing the driver program to the * SSD7 transaction exercise. * * @author CTE * @versio
www.eeworm.com/read/333505/12678230

java movietransaction.java

import java.util.*; import java.io.*; import java.text.*; import java.sql.*; /** * A class representing the driver program to the * SSD7 transaction exercise. * * @author CTE * @versio
www.eeworm.com/read/333003/12711290

java uniquewords21.java

// holding/UniqueWords21.java // TIJ4 Chapter Holding, Exercise 21, page422 /* Using a Map, follow the form of UniqueWords.java to create a * program that counts the occurrence of w