代码搜索结果

找到约 10,000 项符合 6 的代码

exam6-6.cpp

/*文件名:exam6_6.cpp*/ #include #define N 10 main() { int R[]={6,3,9,8,1,5,4,10,2,7}; int i,j,tmp; printf("排序前:"); for (i=0;i

prg6_6.c

// File: prg6_6.c #include /* These are the usual header files */ #include /* for bzero() */ #include /* for close() */ #include

proj6_6.asm

; PROJ6_6.ASM- ; ; An integer input routine. ; dseg segment para public 'data' ; Put any variables you need here. dseg ends cseg segment para public 'code' assume cs:cseg, ds:

ex6_6.ibm

; IBML Sample program #6. ; This code compares the execution ; time of the MUL instruction vs. ; various shift and add equivalents. #repetitions 480000 #unravel 1 ; The following check check

pgm6_6.asm

; String Instructions .386 ;So we can use extended registers option segment:use16 ; and addressing modes. dseg segment para public 'data' String1 byte "String",0 String2 byte 7 dup

shiyan6_6.cpp

// lab6_6.cpp #include "employee.h" void main(void) { Employee emp[5] = { Employee("张三","平安大街3号", "北京", "100000"), Employee("李四","王府井大街20号", "北京", "100000"), Employee("赵刚","中山路112号",

e6_6.asm

stack segment stack db 256 dup(?) stack ends data segment x dw 380h y db ? data ends code segment assume cs:code,ds:data,ss:stack star:mov ax,data mov ds,ax