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

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

i-java-programming

  • c++ Ngô n ngữ C cho vi đ iề u khiể n Các tài liệ u tham khả o, e

    c++ Ngô n ngữ C cho vi đ iề u khiể n Các tài liệ u tham khả o, ebook. Programming Microcontrollers in C (Ted Van Sickle) C Programming for Microcontrollers (Joe Pardue SmileyMicros.com ) Programming 16-Bit PIC Microcontrollers in C (Jucio di jasio ) C Programming for AVR Programming embedded system I,II (Michael J . Pont ) ( các tài liệ u này đ ã down load về )

    標(biāo)簽: 7919 7873 7843 7875

    上傳時間: 2017-07-29

    上傳用戶:壞壞的華仔

  • THIS CHAPTER INTRODUCES and Java Server Pages (and then presents a simple example to display how to

    THIS CHAPTER INTRODUCES and Java Server Pages (and then presents a simple example to display how to use in creating and provides excellent support for the Apache Struts framework, which I believe is the most popular Web framework around. I will delve into how you can easily create Struts-based and other files of relevance to Struts. Some of the most useful enhancements to introduced in version 10g are related to and Struts development.

    標(biāo)簽: INTRODUCES and presents CHAPTER

    上傳時間: 2013-12-21

    上傳用戶:zq70996813

  • including Python, C, Java, GNU/Linux, Windows XP, Symbian Series 60, and Mac OS X... ---------------

    including Python, C, Java, GNU/Linux, Windows XP, Symbian Series 60, and Mac OS X... ------------------------------------ Bluetooth Essentials for Programmers Author: Albert S. Huang, Larry Rudolph Publisher: Cambridge University Press Number Of Pages: 208 Publication Date: 2007-09-03 ISBN-10/ASIN: 0521703751 ISBN-13/EAN: 9780521703758 Binding: Paperback This book provides an introduction to Bluetooth programming, with a specific focus on developing real code. The authors discuss the major concepts and techniques involved in Bluetooth programming, with special emphasis on how they relate to other networking technologies. They provide specific descriptions and examples for creating applications in a number of programming languages and environments including Python, C, Java, GNU/Linux, Windows XP, Symbian Series 60, and Mac OS X. No previous experience with Bluetooth is assumed, and the material is suitable for anyone with some programming background. The autho……

    標(biāo)簽: including Windows Symbian Python

    上傳時間: 2013-12-21

    上傳用戶:caozhizhi

  • C++ is a programming language. It is a programming language of many different dialects, just like

    C++ is a programming language. It is a programming language of many different dialects, just like each language that is spoken has many dialects. In C though, they are not because the "speakers" live in the North, South, or grew up in some other place, it is because there are so many compilers. There are about four major ones: Borland C++, Microsoft Visual C++, Watcom C/386, and DJGPP. You can download DJGPP http://www.delorie.com/djgpp/ or you may already have another compiler. Each of these compilers is a little different. The library functions of one will have all of the standard C++ functions, but they will also have other functions or, continuing the analogy, words. At times, this can lead to confusion, as certain programs will only run under certain compilers, though I do not believe this to be the case with the programs in these tutorials.

    標(biāo)簽: programming language different dialects

    上傳時間: 2014-01-17

    上傳用戶:lz4v4

  • this is the document for the secure development in java. It covers in very good details the aspect o

    this is the document for the secure development in java. It covers in very good details the aspect of security programming in Java

    標(biāo)簽: the development document details

    上傳時間: 2017-09-07

    上傳用戶:黑漆漆

  • this is the document for the secure development in java. It covers in very good details the aspect o

    this is the document for the secure development in java. It covers in very good details the aspect of security programming in Java

    標(biāo)簽: the development document details

    上傳時間: 2013-12-21

    上傳用戶:xyipie

  • This is montecarlo cards game to choose pairs. I have developed using a single servlet. uncompress a

    This is montecarlo cards game to choose pairs. I have developed using a single servlet. uncompress and deploy the application to a webserver like tomcat. java files also comressed with the war file.

    標(biāo)簽: montecarlo uncompress developed servlet

    上傳時間: 2017-09-20

    上傳用戶:zhuyibin

  • 文件Java排課系統(tǒng)的報告

    My JSP 'TeacherMain.jsp' starting page var $=function(id) { return document.getElementById(id); } function show_menu(num){ for(i=0;i

    標(biāo)簽: C++

    上傳時間: 2015-07-03

    上傳用戶:xiyuzhu

  • java學(xué)生數(shù)據(jù)庫

    /*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);     } }

    標(biāo)簽: java 數(shù)據(jù)庫

    上傳時間: 2017-03-17

    上傳用戶:simple

  • JAVA網(wǎng)絡(luò)編程 第4版源碼

    《Java網(wǎng)絡(luò)編程(第四版)》實用指南全面介紹了如何使用Java開發(fā)網(wǎng)絡(luò)程序。你將學(xué)習(xí)如何使用Java的網(wǎng)絡(luò)類庫既快速又輕松地完成常見的網(wǎng)絡(luò)編程任務(wù),如編寫多線程服務(wù)器、加密通信、廣播到本地網(wǎng)絡(luò),以及向服務(wù)器端程序提交數(shù)據(jù)。作者提供了真正可實用的程序來講解他介紹的方法和類。第4版經(jīng)過全面修訂,已經(jīng)涵蓋REST、SPDY、異步I/O和很多其他高級技術(shù)。本書主要內(nèi)容有:研究Internet底層協(xié)議,如TCP/IP和UDP/IP;了解Java的核心I/O API如何處理網(wǎng)絡(luò)輸入和輸出;發(fā)現(xiàn)InetAddress類如何幫助Java程序與DNS交互;用Java的URI和URL類定位、識別和下載網(wǎng)絡(luò)資源;深入研究HTTP協(xié)議,包括REST、HTTP首部和cookie;使用Java的底層Socket類編寫服務(wù)器和網(wǎng)絡(luò)客戶端;利用非阻塞I/O同時管理多個連接

    標(biāo)簽: JAVA 網(wǎng)絡(luò)編程 源碼

    上傳時間: 2018-12-24

    上傳用戶:liudagong

主站蜘蛛池模板: 沙雅县| 张家川| 岐山县| 陇川县| 永嘉县| 饶河县| 民县| 克拉玛依市| 新晃| 金溪县| 界首市| 江源县| 越西县| 云梦县| 达州市| 合肥市| 雅江县| 铜梁县| 晋江市| 微山县| 瑞安市| 奉节县| 襄樊市| 灵山县| 上饶市| 灵石县| 会东县| 广昌县| 沙河市| 玉溪市| 麟游县| 洞头县| 曲水县| 肇庆市| 隆化县| 五峰| 林芝县| 桦南县| 富民县| 丹棱县| 错那县|