代码搜索:PROGRAMMER
找到约 6,766 项符合「PROGRAMMER」的源代码
代码结果 6,766
www.eeworm.com/read/135507/13925238
java payroll.java
interface Employee
{
public int salary();
}
class Manager implements Employee
{
private static final int mgrSal = 40000;
public int salary()
{
return mgrSal;
}
}
class Pr
www.eeworm.com/read/135507/13925243
java payroll.java
interface Employee
{
public int salary();
public int bonus();
}
class Manager implements Employee
{
private static final int mgrSal = 40000;
private static final int mgrBonus = 0;
www.eeworm.com/read/237360/13966835
bak main.c.bak
/****************************************************************************
Filename: main.c
programmer: zhang chen
Description: 中断嵌套。用于13xx 14xx 15xx 16xx系列。
MCLK:DCO ACLK :32.768K
版本变更
www.eeworm.com/read/133932/14017621
txt tipofday.txt
Think high to achieve high
Never Give Up!!!
Attempt @ right time is always fruitful
Enjoy every movement of Life
Download more @ www.VIVEKPATEL.cjb.net
And Rest is left for programmer to add....t
www.eeworm.com/read/201532/15402578
q15 twiddles.q15
;
;FFT Twiddle factors for a complex fft radix 2 with 1024 points
;
;Programmer: Manfred Christ, Program version: 0.99, Program date: 23.08.90
;
.if N>8
; STAGE 4
.word 030fch ;
www.eeworm.com/read/113597/15452508
txt _advert.txt
Warning: Blatant advertisements follow
Tired of wearing out printer ribbons getting a hardcopy of the interrupt
list? Want the list split up by subject and thoroughly indexed? Try
PC Int
www.eeworm.com/read/111925/15500524
c setmcr.c
/* A module of ASYNCx.LIB version 1.02 */
#include
#include "asyncdef.h"
/**************************************************************
Set the value of the Modem Control Register. I
www.eeworm.com/read/110378/15535120
java test.java
/**
* A client to test
*/
import java.io.*;
public class Test {
public static void main(String[] args) {
Manager aManager = new Manager();
ProjectManager aPM = new Pro