摘要: 2014 年春季学期第二校区成功心理与人才发展学习总结指导老师: 刘丽美学生姓名:徐茁学院专业:计算机科学与技术联系方式:18671345636 4月12日,我们在刘丽美老师的指导下,学习了成功心理与人才发展的课程,这段时间也许会成为我来到工大最值得纪念的日子. 据我现在的记忆,我能记得在4月... 阅读全文
posted @ 2014-04-15 17:14 xzenith 阅读(349) 评论(0) 推荐(0) 编辑
摘要: 写于2014 4.12刘丽美心理学课程1.组员:蒋阳,董悦,杨竞凯,万伟平,高天鹏,刘国峰,赵啸虎,慈慧悦,张宁宁,李翀,沈向伟,王长磊,金程2.今天的活动: 叠报纸塔,突破重围,盲人与拐杖,举起人"飞",同舟共济...3.董悦: 我看来完美的女生4.一起的中餐5.晚上艰苦的排练---追求完美的组员... 阅读全文
posted @ 2014-04-12 23:00 xzenith 阅读(227) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: GBK -*-"""Created on Tue Jan 28 16:30:58 2014@author: zenith"""import os,codecs,timeend_dict={}files_list=[]language=raw_input('for Chinese input 1;while English input 2--')if language==2: disk=raw_input("input the file path to sort files: &qu 阅读全文
posted @ 2014-04-02 21:14 xzenith 阅读(351) 评论(0) 推荐(0) 编辑
摘要: #include int Gcd(int a, int b){ if(a==b) return a; if(a>b) return Gcd(a-b,b); if(a<b) return Gcd(a,b-a);}int main(){ printf("Input a,b:"); int a,b; scanf("%d,%d",&a,&b); if(a<=0||b<=0) { printf("Input number should be positive!\n"); return 0; } else 阅读全文
posted @ 2014-04-01 07:06 xzenith 阅读(445) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 4 int main() 5 { 6 char ch; 7 char *c=&ch; 8 int *d=NULL;//初始化指针,实际意味着指向的一个安全的地方 9 int digit;10 d=&digit;//改变指针指向,否则不可用该指针11 //scanf("%d",d);12 printf("Input a char:");13 //scanf("%c",c);14 //printf("you input (%d %c)\n",*d,*c); 阅读全文
posted @ 2014-03-31 20:58 xzenith 阅读(556) 评论(0) 推荐(0) 编辑