码迷,mamicode.com
首页 >  
搜索关键字:4th edition    ( 1650个结果
前端关于JSON的一些基础知识
JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式。 易于人阅读和编写。同时也易于机器解析和生成。 它基于JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 19...
分类:Web程序   时间:2015-07-27 20:22:42    阅读次数:123
JAVA、JDK等入门概念,下载安装JAVA并配置环境变量
一、概念Java是一种可以撰写跨平台应用程序的面向对象的程序设计语言,具体介绍可查阅百度JAVA百科,这里不再赘述。Java分为三个体系,分别为: Java SE(J2SE,Java2 Platform Standard Edition,“Java平台标准版”,包含了运行Java所需的基础环境和核....
分类:编程语言   时间:2015-07-27 18:14:58    阅读次数:176
JSON解析器实现(C++)
JSON介绍JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式。 易于人阅读和编写。同时也易于机器解析和生成。 它基于JavaScript Programming Language, Standard ECMA-262 3rd Edition - Decem...
分类:编程语言   时间:2015-07-26 22:10:12    阅读次数:267
C - The C Answer (2nd Edition) - Exercise 1-17
/* Write a program to print all input lines that are longer than 80 characters. */ #include #define MAXLINE 1000 /* maximum input line size */ #define LONGLINE 80 int getline(char line[], in...
分类:其他好文   时间:2015-07-26 19:15:48    阅读次数:104
xml 和 json 的区别
JSON(Javascript Object Notation) 是一种轻量级的数据交换格式。易于人阅读和编写。同时也易于机器解析和生成。它基于Javascript Programming Language, Standard ECMA-262 3rd Edition – December 1999...
分类:Web程序   时间:2015-07-26 19:14:43    阅读次数:125
C - The C Answer (2nd Edition) - Exercise 1-14
/* Write a program to print a histogram of the frequencies of different characters in its input. */ #include #include #define MAXHIST 15 /* max length of histogram */ #define MAXCHAR 128 ...
分类:其他好文   时间:2015-07-25 15:19:27    阅读次数:111
C - The C Answer (2nd Edition) - Exercise 1-15
/* Rewrite the temperature conversion program of Section 1.2 to use a function for conversion. */ #include float celsius(float fahr); /* print Fahrenheit-Celsius table or fahr = 0, 20, ..., 300; f...
分类:其他好文   时间:2015-07-25 15:16:58    阅读次数:112
C - The C Answer (2nd Edition) - Exercise 1-13
/* Write a program to print a histogram of the lengths of words in its input. It is easy to draw the histogram with the bars horizontal; a vertical orientation is more challenging. */ #includ...
分类:其他好文   时间:2015-07-25 13:52:49    阅读次数:128
C - The C Answer (2nd Edition) - Exercise 1-12
/* Write a program that prints its input one word per line. */ #include #define IN 1 /* inside a word */ #define OUT 0 /* outside a word */ /* print input one word per line */ main() { int c,...
分类:其他好文   时间:2015-07-25 10:45:29    阅读次数:137
j2ee学习路线
目前JAVA主要分三个方向:J2EE(java 2 enterprise edition,也就是JAVA的企业级标准,目前应用最多也最广泛,技术相对成熟)、J2ME(java 2 micro editon,java在微型系统上的应用,像手机、PDA、电视机机顶盒一类,国家3G标准一旦实施,J2ME将...
分类:其他好文   时间:2015-07-24 23:56:02    阅读次数:126
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!