代码搜索:Exercise
找到约 10,000 项符合「Exercise」的源代码
代码结果 10,000
www.eeworm.com/read/192082/8408160
m exercise8b.m
%% Specifications
minspec=70;
maxspec=200;
%% Find how many pass
found=0;
for k=1:numel(data)
found=found + (data(k)>minspec && data(k)
www.eeworm.com/read/290185/8498500
java exercise 3.orderitem.java
/**
* This class models an item in an order.
*
* @author Neil
* @version 1.0.0
* @see Product
*/
public class OrderItem {
private Product product;
private int quantity;
/**
www.eeworm.com/read/290185/8498502
java exercise 8.gourmetcoffeegui.java
import java.util.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
import java.io.*;
import java.text.*;
/**
* Gourmet Coffee System.
*
*
www.eeworm.com/read/290185/8498506
java exercise 5.xmlsalesformatter.java
import java.util.*;
/**
* This class implements the interface SalesFormatter. This class is implemented
* as a singleton so a new object will not be created every time the XML format
* is use
www.eeworm.com/read/290185/8498514
java exercise 3.product.java
/**
* This class models a generic product in the store.
*
* @author Neil
* @version 1.0.0
*/
public class Product {
protected String code;
protected String description;
protected d
www.eeworm.com/read/290185/8498520
java exercise 4.sales.java
import java.util.*;
/**
* The class maintains a list of the orders that have been completed. This
* class implements the interface Iterable to being able to iterate
* through the order
www.eeworm.com/read/290185/8498527
java exercise 3.coffee.java
/**
* This class models a coffee product. It extends class Product.
*
* @author Neil
* @version 1.0.0
* @see Product
*/
public class Coffee extends Product {
private String origin;
www.eeworm.com/read/290185/8498531
java exercise 5.htmlsalesformatter.java
import java.util.*;
/**
* This class implements the interface SalesFormatter. This class is implemented
* as a singleton so a new object will not be created every time the HTML format
* is us
www.eeworm.com/read/290185/8498536
java exercise 5.salesformatter.java
/**
* This interface declares the method that every "Formatter" class will
* implement.
*
* @author Neil
* @version 1.1.0
* @see Sales
*/
public interface SalesFormatter {
/**
*