摘要: #include #include #include#define MAXNUM 200int Isood(int n);using namespace std;int main(void){ int n; cout>n; int *p; p=(int *)mallo... 阅读全文
posted @ 2016-01-11 23:09 wswang 阅读(493) 评论(0) 推荐(0)
摘要: 首先要安装这个库,可以使用pip安装,那么我们要首先安装pip去https://bootstrap.pypa.io/get-pip.py下载get-pip.py,然后运行python get-pip.py安装后添加系统path变量c:/Python27/Scripts然后安装image库,因为我系统... 阅读全文
posted @ 2016-01-11 22:17 wswang 阅读(419) 评论(0) 推荐(0)
摘要: 1 #include"header_file.h" 2 using namespace std; 3 4 void swap(int a,int b) 5 { 6 int t; 7 t=a; 8 a=b; 9 b=t;10 }11 12 void quick_s... 阅读全文
posted @ 2016-01-11 17:02 wswang 阅读(262) 评论(0) 推荐(0)