摘要: 涉及到的知识点1、设计一个完整程序的流程2、HTML部分表单标签的使用3、PHP里的页面相互调用4、PHP接收参数的几种方式首先做的就是html表单的显示部分,创建一个文件(list.php)内容(‘//’后边是注释):<html><head><meta http-equiv="Content-type" content="text/html";charset="utf-8"/><title></title></head><body><form 阅读全文
posted @ 2011-08-29 21:05 java简单例子 阅读(1038) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <set>#include <vector>using namespace std;int main(){ vector<int> vc; for(int i=0; i<10; i++) { vc.push_back(i); vc.push_back(i); } cout << vc.size() << endl; set<int> iset(vc.begin(),vc.end()); cout << iset.size() <&l 阅读全文
posted @ 2011-08-29 15:34 java简单例子 阅读(128) 评论(0) 推荐(0) 编辑