代码搜索:PROGRAMS
找到约 10,000 项符合「PROGRAMS」的源代码
代码结果 10,000
www.eeworm.com/read/443126/7637217
java breaktest.java
// Fig. 5.12: BreakTest.java
// break statement exiting a for statement.
public class BreakTest
{
public static void main( String args[] )
{
int count; // control variable also used
www.eeworm.com/read/443083/7638272
c sac.c
/************************************************************************
*
* sac.c, part of tmndecode (H.263 decoder)
* Copyright (C) 1995, 1996 Telenor R&D, Norway
*
* Contacts:
* Robert
www.eeworm.com/read/442263/7656279
txt readme.txt
Hydraulic Modeling Package (HMP) to Accompany
Water Resources Engineering by Wurbs and James (2002)
The Hydraulic Modeling Package (HMP) is described in Section 1.4.5 on page 37 of
the textbook.
www.eeworm.com/read/440058/7695146
txt ereps30.txt
EREPS VERSION 3.0 UPDATE NOTES
1.0 Software support
COMMANDING OFFICER
ATTN: D883
SPAWARSYSCEN SAN DIEGO
49170 PROPAGATION PATH
SAN DIEGO CA 92152-
www.eeworm.com/read/299965/7817525
txt readme.txt
The files in this directory and its associated subdirectories contain
the source code from the book ``Accelerated C++: Practical Programming
by Example'' by Andrew Koenig and Barbara E. Moo (Addison
www.eeworm.com/read/199568/7844331
java gradebooktest.java
// Fig. 4.7: GradeBookTest.java
// Create GradeBook object and invoke its classAverage method.
public class GradeBookTest
{
public static void main( String args[] )
{
// create Gra
www.eeworm.com/read/199568/7844337
java calculate.java
// Calculate the sum of the integers from 1 to 10
public class Calculate
{
public static void main( String args[] )
{
int sum;
int x;
x = 1; // initialize x to 1 f
www.eeworm.com/read/199568/7844392
java gradebook.java
// Fig. 3.1: GradeBook.java
// Class declaration with one method.
public class GradeBook
{
// display a welcome message to the GradeBook user
public void displayMessage()
{
Sys
www.eeworm.com/read/199568/7844434
java payable.java
// Fig. 10.11: Payable.java
// Payable interface declaration.
public interface Payable
{
double getPaymentAmount(); // calculate payment; no implementation
} // end interface Payable
/******
www.eeworm.com/read/199568/7844554
java incrementtest.java
// Fig. 8.16: IncrementTest.java
// final variable initialized with a constructor argument.
public class IncrementTest
{
public static void main( String args[] )
{
Increment value