亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

ds-F

  • f you have not registered, Please [regist first].You should upload at least five sourcecodes/documen

    f you have not registered, Please [regist first].You should upload at least five sourcecodes/documents. (upload 5 files, you can download 200 files). Webmaster will activate your member account after checking your files. If you do not want to upload source code, you can join the [VIP member] to

    標簽: sourcecodes registered documen Please

    上傳時間: 2014-01-16

    上傳用戶:fandeshun

  • matlab標準遺傳算法 優化函數為f=-(x-1)^2+4

    matlab標準遺傳算法 優化函數為f=-(x-1)^2+4,其中,0<=x<=3

    標簽: matlab 標準 函數 算法

    上傳時間: 2014-01-20

    上傳用戶:evil

  • DS & HF in CDMA system

    DS & HF in CDMA system

    標簽: system CDMA DS HF

    上傳時間: 2017-09-17

    上傳用戶:thuyenvinh

  • 設有二元函數 f(x,y) = f(x) + f(y) 其中:f(x) = f(x-1) * x (x>1) f(x) = 1 (x=

    設有二元函數 f(x,y) = f(x) + f(y) 其中:f(x) = f(x-1) * x (x>1) f(x) = 1 (x=1) f(y) = f(y-1) * f(y-2) (y>2) f(y) = 1 (y=1,2) 請編程建立3個并發協作進程,它們分別完成f(x,y),f(x),f(y)

    標簽: gt 二元 函數

    上傳時間: 2017-09-18

    上傳用戶:baiom

  • gfhff g f f gks fdg sljdflgj sfdgs ldjf gs df g sfd

    gfhff g f f gks fdg sljdflgj sfdgs ldjf gs df g sfd

    標簽: sljdflgj gfhff sfdgs ldjf

    上傳時間: 2017-09-26

    上傳用戶:xwd2010

  • Hybrid ds-FH communication systems

    Hybrid ds-FH communication systems

    標簽: communication systems Hybrid ds-FH

    上傳時間: 2013-11-30

    上傳用戶:gmh1314

  • dshfghfhhgsfgfghfhfghgfhfghfgh fg hfg hh ghghf hgf hghg gh fg hg hfg hfh f hg hgfh gkjh kjkh g yj f

    dshfghfhhgsfgfghfhfghgfhfghfgh fg hfg hh ghghf hgf hghg gh fg hg hfg hfh f hg hgfh gkjh kjkh g yj fgh fh hh fhfg hf fg hf hfg h ghfghfg hfh fh f hfgh fgfgg jhgkj gflsdrflokjhgfd lkjhgflkjnhbv,mnbvdshfghfhhgsfgfghfhfghgfhfghfgh fg hfg hh ghghf hgf hghg gh fg hg hfg hfh f hg hgfh gkjh kjkh g yj fgh fh hh fhfg hf fg hf hfg h ghfghfg hfh fh f hfgh fgfgg jhgkj gflsdrflokjhgfd lkjhgflkjnhbv,mnbvdshfghfhhgsfgfghfhfghgfhfghfgh fg hfg hh ghghf hgf hghg gh fg hg hfg hfh f hg hgfh gkjh kjkh g yj fgh fh hh fhfg hf fg hf hfg h ghfghfg hfh fh f hfgh fgfgg jhgkj gflsdrflokjhgfd lkjhgflkjnhbv,mnbvdshfghfhhgsfgfghfhfghgfhfghfgh fg hfg hh ghghf hgf hghg gh fg hg hfg hfh f hg hgfh gkjh kjkh g yj fgh fh hh fhfg hf fg hf hfg h ghfghfg hfh fh f hfgh fgfgg jhgkj gflsdrflokjhgfd lkjhgflkjnhbv,mnbv

    標簽: dshfghfhhgsfgfghfhfghgfhfghfgh hfg ghghf fg

    上傳時間: 2017-09-26

    上傳用戶:1159797854

  • Cubic spline algorithm approximating function y=f(x) - ((-2)*x*(2*x+3))/(x*x+4*x+5) in interval [-2

    Cubic spline algorithm approximating function y=f(x) - ((-2)*x*(2*x+3))/(x*x+4*x+5) in interval [-2 2]

    標簽: approximating algorithm function interval

    上傳時間: 2013-12-05

    上傳用戶:xymbian

  • 16進制轉十進制

    DATAS SEGMENT w dw 0 keybuf db 255      db 0      db 255 dup(0)      ;定義鍵盤輸入需要的緩沖區 DATAS ENDS STACKS SEGMENT db 200 dup(?) STACKS ENDS CODES SEGMENT ASSUME CS:CODES,DS:DATAS,SS:STACKS START: MOV AX,DATAS MOV DS,AX mov dx,offset keybuf     ;用0a號功能,輸入一個字符串 mov ah,0ah               ;用回車結束 int 21h mov dl,0ah               ;再進行換行,以便在下一行顯示轉換后的字符串  mov ah,2     int 21h ;  push ax ;   push dx ;      mov dl,cl ;     mov ah,02 ;     int 21h   ;   pop dx ;  pop ax mov bx,offset keybuf+1   ;取出字符串的字符個數,作為循環的次數 mov cl,[bx] mov ch,0     mov ax,0             again:  inc bx mov ax,[w] push bx mov bx,16 mul bx pop bx            ;是小寫字母,則轉換為大寫字母 mov [w],ax mov dl,[bx]             ;取出一個字符, cmp dl,'9' jbe lab1 cmp dl,'F' jbe lab2 sub dl,32 lab2: sub dl ,07h lab1:  sub dl,30h add [w],dx  loop again   mov ax,[w]  mov bx,-1 push bx mov bx,10 lab3 :mov dx,0 div bx  push dx cmp ax,0 jnz lab3 lab5: pop dx cmp dx,-1 jz lab4 add dl,30h mov ah,02 int 21h        jmp  lab5            ;循環,處理完整個字符串 lab4:  MOV AH,4CH INT 21H CODES ENDS END START

    標簽: 匯編

    上傳時間: 2015-04-02

    上傳用戶:wcc0310

  • CAST-F超聲波成像

    CAST-F超聲波成像,井下地層超聲波成像

    標簽: CAST-F超聲波成像

    上傳時間: 2015-04-13

    上傳用戶:longge

主站蜘蛛池模板: 喜德县| 万安县| 福泉市| 卓资县| 逊克县| 宁陕县| 太白县| 同江市| 临澧县| 枝江市| 霞浦县| 连城县| 康平县| 佛坪县| 介休市| 阿荣旗| 大荔县| 永春县| 青州市| 湖口县| 黄石市| 德钦县| 崇左市| 大邑县| 马关县| 余江县| 中卫市| 论坛| 三河市| 腾冲县| 灵石县| 巨野县| 贞丰县| 新河县| 云龙县| 将乐县| 河池市| 水富县| 睢宁县| 东丽区| 邯郸市|