代码搜索:Move
找到约 10,000 项符合「Move」的源代码
代码结果 10,000
www.eeworm.com/read/317521/13503152
gif move.gif
www.eeworm.com/read/316707/13518431
c move.c
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ +
+ move.c - this file implements misc. moves instruction
www.eeworm.com/read/316225/13528102
gif move.gif
www.eeworm.com/read/315936/13534457
gif move.gif
www.eeworm.com/read/313110/13596364
asm move.asm
; 第二章 汇编语言程序格式
; 实验一 基本编程
;一.实验目的:
; 进一步了解IBM PC 机的指令系统,并掌握汇编语言基本编程技巧.
;二.实验内容:
; 编制将数据段SAV为偏移首地址的存储单元的内容分别送到AX,BX,CX和DX
; 的程序.
;三.程序清单:
;**************
www.eeworm.com/read/312431/13611417
gif move.gif
www.eeworm.com/read/312142/13618528
gif move.gif
www.eeworm.com/read/310869/13642081
cpp move.cpp
// Move.cpp
#include
#include "Move.h"
Move::Move(double a, double b)
{
x = a;
y = b;
}
void Move::showmove()const
{
using std::cout;
using std::endl;
cout
www.eeworm.com/read/310869/13642082
h move.h
// move.h
#ifndef MOVE_H_
#define MOVE_H_
class Move
{
private:
double x;
double y;
public:
Move( double a = 0, double b = 0);
void showmove()const;
Move add(const Move & m)const;
www.eeworm.com/read/308445/13700829