代码搜索:Homework
找到约 1,174 项符合「Homework」的源代码
代码结果 1,174
www.eeworm.com/read/255577/12072347
asv f_problems.asv
function [problems,secs,nums] = f_problems
%F_PROBLEMS: Generate cell array containing FDSP homework problem data
%
% Usage: [problems,secs,nums] = f_problems;
%
% Outputs:
% problems
www.eeworm.com/read/255577/12072759
m f_problems.m
function [problems,secs,nums] = f_problems
%F_PROBLEMS: Generate cell array containing FDSP homework problem data
%
% Usage: [problems,secs,nums] = f_problems;
%
% Outputs:
% problems
www.eeworm.com/read/127790/14333928
h resource.h
//{{NO_DEPENDENCIES}}
// Microsoft Developer Studio generated include file.
// Used by homework2.rc
//
#define IDM_ABOUTBOX 0x0010
#define IDD_ABOUTBOX 100
www.eeworm.com/read/127543/14350438
c talksrvr.c
/* hw2-s.c: this program implements the homework #2 server
* I note that I cheated and used double-linked lists
* instead of a simple array of 5, but I hope that
* you ma
www.eeworm.com/read/174092/5365526
cpp read_hw.cpp
#include
#include
using std::istream;
using std::vector;
// read homework grades from an input stream into a `vector'
istream& read_hw(istream& in, vector
www.eeworm.com/read/174092/5365543
cpp read_hw.cpp
#include
#include
using std::istream;
using std::vector;
// read homework grades from an input stream into a `vector'
istream& read_hw(istream& in, vector
www.eeworm.com/read/174092/5365557
cpp read_hw.cpp
#include
#include
using std::istream;
using std::vector;
// read homework grades from an input stream into a `vector'
istream& read_hw(istream& in, vector
www.eeworm.com/read/174092/5365650
grade2
// compute a student's overall grade from midterm and final exam grades
// and vector of homework grades.
// this function does not copy its argument, because `median' does so for us.
double grade(
www.eeworm.com/read/174092/5365656
read_hw
// read homework grades from an input stream into a `vector'
istream& read_hw(istream& in, vector& hw)
{
if (in) {
// get rid of previous contents
hw.clear();
// read ho
www.eeworm.com/read/329703/3430188
java othread.java
package homework;
public class OThread {
public static void main(String[] args){
Thread t1=new ThreadTest();
t1.start();
}
}
class ThreadTest extends Thread{
public void