摘要:
1 #include <stdio.h> 2 #include <string.h> 3 4 5 char *strings; 6 int count; 7 void bubble(char *strings,int count) 8 { 9 register int m, n; 10 register char s; 11 for (m = 1; m<count; m++) 12 for (n 阅读全文
摘要:
Java web应用由一组servlet、HTML页,类,以及它可以被绑定的资源构成,它可以在各种供应商提供的实现servlet规范容器中运行javaweb包括这些:Servlet jsp 实用类 静态文档 web常用描述信息 servlet容器为Javaweb提供运行时环境 负责管理servlet 阅读全文