DATAS SEGMENT w dw 0 keybuf db 255 db 0 db 255 dup(0) ;定義鍵盤輸入需要的緩沖區(qū) 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 ;用回車結(jié)束 int 21h mov dl,0ah ;再進行換行,以便在下一行顯示轉(zhuǎn)換后的字符串 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 ;取出字符串的字符個數(shù),作為循環(huán)的次數(shù) mov cl,[bx] mov ch,0 mov ax,0 again: inc bx mov ax,[w] push bx mov bx,16 mul bx pop bx ;是小寫字母,則轉(zhuǎn)換為大寫字母 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 ;循環(huán),處理完整個字符串 lab4: MOV AH,4CH INT 21H CODES ENDS END START
SS="tags">標(biāo)簽: 匯編
SS="time">上傳時間: 2015-04-02
SS="username">上傳用戶:wcc0310
破解臺達PLC工具軟件,可解ES EX SS 系列,采用無窮解的方法
SS="tags">標(biāo)簽: 解密軟件
SS="time">上傳時間: 2015-04-22
SS="username">上傳用戶:elliSShz
This Interface Control Document (ICD) defines the requirements related to the interface between the Space Segment (SS) of the Global Positioning System (GPS) and the Navigation User Segment (US) of the GPS.
SS="tags">標(biāo)簽: Interface Control Document gps
SS="time">上傳時間: 2016-01-20
SS="username">上傳用戶:芃發(fā)發(fā)da
/*import java.util.Scanner; //主類 public claSS student122 { //主方法 public static void main(String[] args){ //定義7個元素的字符數(shù)組 String[] st = new String[7]; inputSt(st); //調(diào)用輸入方法 calculateSt(st); //調(diào)用計算方法 outputSt(st); //調(diào)用輸出方法 } //其他方法 //輸入方法 private static void inputSt(String st[]){ System.out.println("輸入學(xué)生的信息:"); System.out.println("學(xué)號 姓名 成績1,2,3"); //創(chuàng)建鍵盤輸入類 Scanner SS = new Scanner(System.in); for(int i=0; i<5; i++){ st[i] = SS.next(); //鍵盤輸入1個字符串 } } //計算方法 private static void calculateSt(String[] st){ int sum = 0; //總分賦初值 int ave = 0; //平均分賦初值 for(int i=2;i<5;i++) { /計總分,字符變換成整數(shù)后進行計算 sum += Integer.parseInt(st[i]); } ave = sum/3; //計算平均分 //整數(shù)變換成字符后保存到數(shù)組里 st[5] = String.valueOf(sum); st[6] = String.valueOf(ave); } //輸出方法 private static void outputSt(String[] st){ System.out.print("學(xué)號 姓名 "); //不換行 System.out.print("成績1 成績2 成績3 "); System.out.println("總分 平均分");//換行 //輸出學(xué)生信息 for(int i=0; i<7; i++){ //按格式輸出,小于6個字符,補充空格 System.out.printf("%6s", st[i]); } System.out.println(); //輸出換行 } }*/ import java.util.Scanner; public claSS student122 { public static void main(String[] args) { // TODO 自動生成的方法存根 String[][] st = new String[3][8]; inputSt(st); calculateSt(st); outputSt(st); } //輸入方法 private static void inputSt(String st[][]) { System.out.println("輸入學(xué)生信息:"); System.out.println("班級 學(xué)號 姓名 成績:數(shù)學(xué) 物理 化學(xué)"); //創(chuàng)建鍵盤輸入類 Scanner SS = new Scanner(System.in); for(int j = 0; j < 3; j++) { for(int i = 0; i < 6; i++) { st[j][i] = SS.next(); } } } //輸出方法 private static void outputSt(String st[][]) { System.out.println("序號 班級 學(xué)號 姓名 成績:數(shù)學(xué) 物理 化學(xué) 總分 平均分"); //輸出學(xué)生信息 for(int j = 0; j < 3; j++) { System.out.print(j+1 + ":"); for(int i = 0; i < 8; i++) { System.out.printf("%6s", st[j][i]); } System.out.println(); } } //計算方法 private static void calculateSt(String[][] st) { int sum1 = 0; int sum2 = 0; int sum3 = 0; int ave1 = 0; int ave2 = 0; int ave3 = 0; for(int i = 3; i < 6; i++) { sum1 += Integer.parseInt(st[0][i]); } ave1 = sum1/3; for(int i = 3; i < 6; i++) { sum2 += Integer.parseInt(st[1][i]); } ave2 = sum2/3; for(int i = 3; i < 6; i++) { sum3 += Integer.parseInt(st[2][i]); } ave3 = sum3/3; st[0][6] = String.valueOf(sum1); st[1][6] = String.valueOf(sum2); st[2][6] = String.valueOf(sum3); st[0][7] = String.valueOf(ave1); st[1][7] = String.valueOf(ave2); st[2][7] = String.valueOf(ave3); } }
SS="tags">標(biāo)簽: java 數(shù)據(jù)庫
SS="time">上傳時間: 2017-03-17
SS="username">上傳用戶:simple
SS.科學(xué)上網(wǎng)必備SS.科學(xué)上網(wǎng)必備SS.科學(xué)上網(wǎng)必備SS.科學(xué)上網(wǎng)必備SS.科學(xué)上網(wǎng)必備
SS="tags">標(biāo)簽: Shadowsocks
SS="time">上傳時間: 2017-05-03
SS="username">上傳用戶:blankspace
瑣瑣碎碎SS,南京郵電大學(xué)開題報告模板,不喜歡勿噴
SS="time">上傳時間: 2018-01-09
SS="username">上傳用戶:18852006725
Since the principle of multi-carrier code division multiple acceSS (MC-CDMA) was simultaneously proposed by Khaled Fazel et al. and Nathan Yee et al. at the IEEE International Symposium on Personal, Indoor and Mobile Radio Communications (PIMRC) in the year 1993, multi-carrier spread spectrum (MC-SS) has rapidly become one of the most wide spread independent research topics on the field of mobile radio communications. Therefore, the International Workshop on Multi-Carrier Spread Spectrum (MC-SS) was initiated in the year 1997. Multi-carrier and spread spectrum systems with their generic air interface and adaptive technologies are considered as potential candidates to fulfill the requirements of next generation mobile communications systems.
SS="tags">標(biāo)簽: Multi-Carrier Spectrum Spread 2007
SS="time">上傳時間: 2020-05-31
SS="username">上傳用戶:shancjb
Having dealt with in-depth analysis of SS#7, GSM and GPRS networks I started to monitor UTRAN interfaces approximately four years ago. Monitoring interfaces means decoding the data captured on the links and analysing how the different data segments and meSSages are related to each other. In general I wanted to trace all meSSages belonging to a single call to prove if the network elements and protocol entities involved worked fine or if there had been failures or if any kind of suspicious events had influenced the normal call proceeding or the call’s quality of service. Cases showing normal network behaviour have been documented in Kreher and Ruedebusch (UMTS Signaling. John Wiley & Sons, Ltd, 2005), which provides examples for technical experts investigating call flows and network procedures.
SS="tags">標(biāo)簽: Performance Measurement Practical Guide UMTS
SS="time">上傳時間: 2020-06-01
SS="username">上傳用戶:shancjb
全網(wǎng)最全的autojs列子,有一千六百多的腳本文件,腳本內(nèi)容包含:幾十種類型的UI腳本,抖音、QQ、微信、陌陌、支付寶等自動化操作的腳本、還有部分協(xié)議列表,HTTP協(xié)議(POST、GET)上傳下載,接碼模塊,百度文字識別api模塊,文件操作模塊:txt文本讀一行刪一行,等等其他例子QQ語音紅包.jsqq語音紅包,沒加懸浮窗,我覺得自己用腳本引擎會好點.jsQQ語音輸入(Tim版)(1).jsQQ語音輸入(Tim版).jsQQ資料贊.jsqq轟炸機(1).jsqq轟炸機.jsQQ選圖涂鴉.jsqq順序點贊腳本.jsQQ,微信聊天輔助腳本(文本分割填充字符) v2.jsQQ,微信聊天輔助腳本(文本分割填充字符).jsqtiao.jsrawWindow求解.jsrelationship.jsrhinoneteasecloudmusic.jsRobot.jsROOT權(quán)限啟動無障礙服務(wù).jsRSA.jSScript.jSScroll的使用.jSSecure.jSSetting.jSSha256.jSShell開關(guān)飛行模式.jSShuabaoviod.jSSMSCODE.jSSmsCodeExtract.jSSojson.com.jSSoul_靈魂匹配.jSSpinner例子.jSSqlDatabase2.jSSs.jSStart(2).jSSun_rise&set.jSSurfaceView(簡單示例).jSSwitch控件.jstcp連接客戶端.jste.jstest(1).jstest(2).jstest(3).jstest(4).jstest.jstestTouch.jstestyinhe.jsTheWolf_API.jstoast圖片加文字.jstoast替代函數(shù).jstranslate.jsTrun(翻翻樂).jsts-00-dist.jsTS微信跳一跳滿分(10000)飛速版.jsts跳一跳r9s最新版.jsTS跳一跳全機型通用版(2).jsts跳一跳全機型通用版(3).jsts跳一跳全機型通用版.jsTS跳一跳腳本正確顯示方式(支持root).jsTS跳一跳自動.jsTS跳一跳過檢測.jstt.jsTTS(1).jstts.jstts2.jstts3.jsTTS搶語音紅包,作者A酷安(?????)----錦,詳細使用看代碼注釋.jstxt.jsuc答題.jsui 懸浮窗動畫+滑動界面.jsUI(2).jsUI.jsuitest - 副本.jsui。.jsui下對話框文件選擇器(1).jsui中的延時除了多線程有別的辦法嗎.jsui保存控件屬性3.jsUI全選.jsUI切換.jsui列子.jsui右下角展開按鈕.jsui多界面.jsui屬性(1).jsui開關(guān)控件(1).jsui開關(guān)控件.jsUI文件選擇.jsUI顯示日志.jsUI畫時鐘作者xxoo.jsui相對布局.jsUI示例(支付UI).jsui示例app下方tabs.jsui示例下方tabs(1.0.0-1 修復(fù)寬度不適配問題).jsUI腳本使用無障礙的最佳實踐.jsUI輪播圖.jsui選擇文件.jsUI驗證碼(有BUG).jsuki_0.jsUki消息交互式回復(fù).jsUnlock.jsUntitled-1.jsuntitled.jsUTF.jsvip視頻解析2.1.jsvscode連接不上手機解決辦法.jsWannaCry(僅為娛樂).jsWeather.jswebScript.jsWebViewClient的使用方法.jswebViewUA切換3.jswebView填充表單加alert.jsWebView多頁面瀏覽(1).jsWebView多頁面瀏覽.jswebView提取圖片地址并加載.jswebView獲取圖片地址.jswebview獲取網(wǎng)頁原圖.jswebview獲取網(wǎng)頁原圖保存.jswebView輸入關(guān)鍵詞搜索.jsweb攔截修改.jsWeChat.jsWechatJumpingAI(2).jsWechatJumpingAI(3).jswechatjumpingai(4).jsWechatJumpingAI.jswife緊急掉線(autojs破解版專用).js.jswifi設(shè)置代理(未完成).js.js
SS="tags">標(biāo)簽: autojs
SS="time">上傳時間: 2021-11-06
SS="username">上傳用戶:
STM32L475開發(fā)板PDF原理圖+AD集成3D封裝庫+主要器件技術(shù)手冊,集成封裝庫型號列表如下:Library Component Count : 44Name Description----------------------------------------------------------------------------------------------------ANT-2.4G ANT,2.4G,PCB天線ATK-TEST-1*4-2.54mm 測試點ATK_MODULE 單排母,1*6,2.54mmBEEP 3.3V有源蜂鳴器BUTTON_DIP3 撥動開關(guān)SS-12F44C-0402-SMD C-0603-SMD C-CAP-SMD-220uF/10V C-CEP-220uF/16V D-1N4148 Header-1*3-2.54mm 單排針-2.54mmHeader-2*10-2.54mm 雙排針-2.54mmHeader-2*2-2.54mm 雙排針-2.54mmHeader-2*3-2.54mm 雙排針-2.54mmHeader-2*4-2.54mm 雙排座-2.54mmIR-LED 1206紅外發(fā)射管(側(cè))IR-LF0038GKLL-1 紅外接收管SMDJ-MICRO-USB-5S Micro USB 5.9有柱腳長1.25加長針L-0420-4.7uH 電感,4.7uH,3ALCD-TFT-H13TS38A LCD,TFT,1.3'240*240,禹龍LED-0603-RED 發(fā)光二極管-紅色LED-RGB-1615-0603 RGB,共陽,1615,0603MIC-6022 MICMotor-SMD 電機,SMDPhone-3-M 耳機座,三節(jié)R-0402-SMD 貼片電阻R-0805-SMD 貼片電阻RT9193-3.3S-KEY-SMD-324225 KEY,SMD,324225S8050-SMD SD-MICRO-TF SD,MICRO,TFU-AHT10 Sensor,溫濕度傳感器U-AP3216C Sensor.光照/距離U-AP6181 WIFI Module,SDIOU-ES8388 AUDIO,2-ch DAC,2-ch ADCU-ICM-20608 三軸陀螺儀/三軸加速度計,U-L9110S 電機驅(qū)動,800mAU-RT9013-3.3 LDO,500mAU-STM32F103C8T6 U-STM32L475VET6 MCU,LQFP100,512K FLASH,128K RAMU-W25Q128 SPI FLASH,16MY-12M-SMD 晶振 - 12M貼片Y-3215-32.768K XTAL,3215,32.768KY-3215-8M XTAL,3215,8MHz
SS="tags">標(biāo)簽: stm32l475 開發(fā)板
SS="time">上傳時間: 2021-12-15
SS="username">上傳用戶: