代码搜索:Programs
找到约 10,000 项符合「Programs」的源代码
代码结果 10,000
www.eeworm.com/read/469123/6977815
copyright
Software that implements
GAUSSIAN PROCESS REGRESSION AND CLASSIFICATION
Copyright (c) 2005 - 2007 by Carl Edward Rasmussen and Chris Williams
Permission is granted
www.eeworm.com/read/462124/7208813
readme
Simple DirectMedia Layer
(SDL)
Version 1.2
---
http://www.libsdl.org/
This is the Simple Direc
www.eeworm.com/read/458176/7302848
c getbits.c
/************************************************************************
*
* getbits.c, bit level routines for tmndecode (H.263 decoder)
* Copyright (C) 1995, 1996 Telenor R&D, Norway
*
* Co
www.eeworm.com/read/451504/7462663
txt license.txt
The MathWorks, Inc.
Software License
IMPORTANT NOTICE
THE LICENSE AGREEMENT TOGETHER WITH ANY APPLICABLE ADDENDUM REPRESENTS
THE ENTIRE AGREEMENT BETWEEN YOU (THE "LICENSEE") AND THE MATHW
www.eeworm.com/read/449281/7515317
cpp yuvviewer.cpp
/************************************************************************
*
* Ye-Kui Wang wyk@ieee.org
* Juan-Juan Jiang juanjuan_j@hotmail.com
*
* March 14, 2002
*
********
www.eeworm.com/read/443126/7637153
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/443126/7637162
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/443126/7637193
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/443126/7637200
java continuetest.java
// Fig. 5.13: ContinueTest.java
// continue statement terminating an iteration of a for statement.
public class ContinueTest
{
public static void main( String args[] )
{
for ( int c
www.eeworm.com/read/443126/7637205
java forcounter.java
// Fig. 5.2: ForCounter.java
// Counter-controlled repetition with the for repetition statement.
public class ForCounter
{
public static void main( String args[] )
{
// for state