JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式。 易于人阅读和编写。同时也易于机器解析和生成。 它基于JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 19...
分类:
Web程序 时间:
2015-07-27 20:22:42
阅读次数:
123
一、概念Java是一种可以撰写跨平台应用程序的面向对象的程序设计语言,具体介绍可查阅百度JAVA百科,这里不再赘述。Java分为三个体系,分别为: Java SE(J2SE,Java2 Platform Standard Edition,“Java平台标准版”,包含了运行Java所需的基础环境和核....
分类:
编程语言 时间:
2015-07-27 18:14:58
阅读次数:
176
JSON介绍JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式。 易于人阅读和编写。同时也易于机器解析和生成。 它基于JavaScript Programming Language, Standard ECMA-262 3rd Edition - Decem...
分类:
编程语言 时间:
2015-07-26 22:10:12
阅读次数:
267
/* 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
JSON(Javascript Object Notation) 是一种轻量级的数据交换格式。易于人阅读和编写。同时也易于机器解析和生成。它基于Javascript Programming Language, Standard ECMA-262 3rd Edition – December 1999...
分类:
Web程序 时间:
2015-07-26 19:14:43
阅读次数:
125
/* 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
/* 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
/* 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
/* 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
目前JAVA主要分三个方向:J2EE(java 2 enterprise edition,也就是JAVA的企业级标准,目前应用最多也最广泛,技术相对成熟)、J2ME(java 2 micro editon,java在微型系统上的应用,像手机、PDA、电视机机顶盒一类,国家3G标准一旦实施,J2ME将...
分类:
其他好文 时间:
2015-07-24 23:56:02
阅读次数:
126