『原創』SKILL源程序共享:MM轉MIL,且附帶計算器功能。此SKILL功能包括:MM轉MIL MIL轉MM轉換。含計算器功能,加、減、乘、除都可以。非常實用的一個SKILL。...
標簽: MANLAB
上傳時間: 2015-07-15
上傳用戶:mwr0707
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.
標簽: Interface Control Document gps
上傳時間: 2016-01-20
上傳用戶:芃發發da
/*import java.util.Scanner; //主類 public class student122 { //主方法 public static void main(String[] args){ //定義7個元素的字符數組 String[] st = new String[7]; inputSt(st); //調用輸入方法 calculateSt(st); //調用計算方法 outputSt(st); //調用輸出方法 } //其他方法 //輸入方法 private static void inputSt(String st[]){ System.out.println("輸入學生的信息:"); System.out.println("學號 姓名 成績1,2,3"); //創建鍵盤輸入類 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++) { /計總分,字符變換成整數后進行計算 sum += Integer.parseInt(st[i]); } ave = sum/3; //計算平均分 //整數變換成字符后保存到數組里 st[5] = String.valueOf(sum); st[6] = String.valueOf(ave); } //輸出方法 private static void outputSt(String[] st){ System.out.print("學號 姓名 "); //不換行 System.out.print("成績1 成績2 成績3 "); System.out.println("總分 平均分");//換行 //輸出學生信息 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("輸入學生信息:"); System.out.println("班級 學號 姓名 成績:數學 物理 化學"); //創建鍵盤輸入類 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("序號 班級 學號 姓名 成績:數學 物理 化學 總分 平均分"); //輸出學生信息 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); } }
上傳時間: 2017-03-17
上傳用戶:simple
SS.科學上網必備SS.科學上網必備SS.科學上網必備SS.科學上網必備SS.科學上網必備
標簽: Shadowsocks
上傳時間: 2017-05-03
上傳用戶:blankspace
mil mm,db 倍數,米每秒,千米每小時,等單位之間互相換算 電阻并聯計算
上傳時間: 2017-09-17
上傳用戶:mubo
瑣瑣碎碎ss,南京郵電大學開題報告模板,不喜歡勿噴
上傳時間: 2018-01-09
上傳用戶: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.
標簽: Multi-Carrier Spectrum Spread 2007
上傳時間: 2020-05-31
上傳用戶: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.
標簽: Performance Measurement Practical Guide UMTS
上傳時間: 2020-06-01
上傳用戶:shancjb
復活節計算 int y, n, a, q, b, m, w, d, mm = 4; y = atoi(argv[1]); n = y-1900; a = fmod(n,19);
上傳時間: 2021-07-09
上傳用戶:scfan2004
全網最全的autojs列子,有一千六百多的腳本文件,腳本內容包含:幾十種類型的UI腳本,抖音、QQ、微信、陌陌、支付寶等自動化操作的腳本、還有部分協議列表,HTTP協議(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權限啟動無障礙服務.jsRSA.jsscript.jsscroll的使用.jsSecure.jssetting.jssha256.jsshell開關飛行模式.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替代函數.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開關控件(1).jsui開關控件.jsUI文件選擇.jsUI顯示日志.jsUI畫時鐘作者xxoo.jsui相對布局.jsUI示例(支付UI).jsui示例app下方tabs.jsui示例下方tabs(1.0.0-1 修復寬度不適配問題).jsUI腳本使用無障礙的最佳實踐.jsUI輪播圖.jsui選擇文件.jsUI驗證碼(有BUG).jsuki_0.jsUki消息交互式回復.jsUnlock.jsUntitled-1.jsuntitled.jsUTF.jsvip視頻解析2.1.jsvscode連接不上手機解決辦法.jsWannaCry(僅為娛樂).jsWeather.jswebScript.jsWebViewClient的使用方法.jswebViewUA切換3.jswebView填充表單加alert.jsWebView多頁面瀏覽(1).jsWebView多頁面瀏覽.jswebView提取圖片地址并加載.jswebView獲取圖片地址.jswebview獲取網頁原圖.jswebview獲取網頁原圖保存.jswebView輸入關鍵詞搜索.jsweb攔截修改.jsWeChat.jsWechatJumpingAI(2).jsWechatJumpingAI(3).jswechatjumpingai(4).jsWechatJumpingAI.jswife緊急掉線(autojs破解版專用).js.jswifi設置代理(未完成).js.js
標簽: autojs
上傳時間: 2021-11-06
上傳用戶: