代码搜索:Assignment
找到约 8,196 项符合「Assignment」的源代码
代码结果 8,196
www.eeworm.com/read/242370/13009345
cpp assignment.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/140905/13053261
cpp assignment.cpp
#include "assignment.h"
//构造函数
Assignment::Assignment(int n, int * eff):
MAXVALUE(65532), MAXASSIGN(false), MINASSIGN(true),
ASSIGNED(-1), GETOFFED(-2)
{
scale = n;
efficiency = new int[sca
www.eeworm.com/read/140905/13053270
h assignment.h
class Assignment
{
public:
Assignment(int n, int * eff);
~Assignment();
int * getAssignment(bool isMin=true);
private:
bool hasAssigned(int * eff);
boo
www.eeworm.com/read/140891/13054310
java assignment.java
//: c03:Assignment.java
// Assignment with objects is a bit tricky.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
import co
www.eeworm.com/read/138758/13216549
java assignment.java
//: c03:Assignment.java
// Assignment with objects is a bit tricky.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
import co
www.eeworm.com/read/325023/13230998
java assignment.java
//: operators/Assignment.java
// Assignment with objects is a bit tricky.
import static net.mindview.util.Print.*;
class Tank {
int level;
}
public class Assignment {
public static voi
www.eeworm.com/read/320605/13421903
java assignment.java
//: c03:Assignment.java
// Assignment with objects is a bit tricky.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
import co
www.eeworm.com/read/320159/13432100
cpp assignment.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/311052/13637905
java assignment.java
//: Assignment.java
// Assignment with objects is a bit tricky
class Number {
int i;
}
public class Assignment {
public static void main(String[] args) {
Number n1 = new Number();
Numb
www.eeworm.com/read/311046/13638005
java assignment.java
//: Assignment.java
// Assignment with objects is a bit tricky
class Number {
int i;
}
public class Assignment {
public static void main(String[] args) {
Number n1 = new Number();
Numb