代码搜索:practical
找到约 1,002 项符合「practical」的源代码
代码结果 1,002
www.eeworm.com/read/290185/8498586
java practical quiz 8.vhs.java
/**
* This interface declares the methods for obtaining VHS tape information.
*
* @author Neil
* @version 1.0.0
*/
public interface VHS {
/**
* Returns the format of the VHS tape.
www.eeworm.com/read/429452/8807873
java practical quiz 5.testathletescores.java
import java.io.*;
/**
* Test driver for class AthleteScores.
*
* @author Neil
* @version 1.0.0
*/
public class TestAthleteScores {
/* Standard output stream */
privat
www.eeworm.com/read/429452/8807874
txt practical quiz 2.debuggingreport.txt
---------------------------------------------------------------------------
Bug #1
Description of the bug:
The variable "enumberOfC" increases twice while the variable "numberOfG" is never r
www.eeworm.com/read/429452/8807881
java practical quiz 9.employeefileio.java
import java.util.*;
import java.io.*;
/**
* This class provides two file I/O methods for handling employee data.
*
* @author Neil
* @version 1.0.0
* @see Employee
*/
public class Emp
www.eeworm.com/read/429452/8807888
java practical quiz 6.employeearray.java
/**
* This class contains methods to process arrays of {@link Employee} objects.
*
* @author Neil
* @version 1.0.0
* @see Employee
*/
public class EmployeeArray {
/**
* Creates an
www.eeworm.com/read/429452/8807892
java practical quiz 8.vhsmovie.java
/**
* This class extends class Movie and implements the interface VHS.
*
* @author Neil
* @version 1.0.0
* @see Movie
* @see VHS
*/
public class VHSMovie extends Movie implements VHS {
www.eeworm.com/read/429452/8807896
java practical quiz 8.movie.java
/**
* This abstract class stores the information of a movie.
*
* @author Neil
* @version 1.0.0
*/
public abstract class Movie {
private String title;
private String[] actors;
priv
www.eeworm.com/read/429452/8807899
java practical quiz 1.secondscalculator.java
import java.io.*;
import java.util.*;
/**
* This application will read a time interval expressed
* in hours, minutes, and seconds from the keyboard and
* then display the total number of sec
www.eeworm.com/read/429452/8807907
java practical quiz 7.studentarraylist.java
import java.util.*;
/**
* This class contains methods to process array lists of {@link Student}
* objects.
*
* @author Neil
* @version 1.0.0
* @see Student
* @see ArrayList
*/
pub
www.eeworm.com/read/429452/8807920
java practical quiz 2.dnasequence.java
/**
* This class represents a DNA sequence of nucleotides 'A', 'T', 'C' and 'G'
* as a sequence of characters in a {@link String} object.
*
* @author iCarnegie
* @version 1.0.0
*/
publi