11th 最后的致意】的更多相关文章

“终于我们不再是师生”,无论日后我们是否是师生,但这段经历是不可否认的,可以说软件工程这一门课程恐怕是我学生生涯中终生难忘的一段体验.即便不是从知识上,从另一个方面来讲,也教给了我一种做人做事的态度.这让我受益匪浅,同时也尽早发现了自己身上的不足,我还是很感激老师给我们上了这门课的.但老师的要求也确实是过为严厉了些,没有充分考虑到本校的教学模式实际和学生的整体水平,这点还是需要改进一下的.日后,我们将不再是师生,希望我今天留下的建议能够帮助杨老师改善这门课程,让未来的学弟学妹们不再重蹈覆辙.…
      The 11th tip of DB Query Analyzer                                            MA Gen feng       ( Guangdong Unitoll Services incorporated, Guangzhou 510300) Abstract  In the latest version 5.01, a useful function is added in DB Query Analyzer.It…
本周PSP: C(类别) C(内容) S(开始时间) ST(结束时间) I(中断时间) T(实际时间) 文档 11月30日 回顾5个问题 13:00 13:50 2 48 11月30日 如果重新来过 14:00 14:20 5 15 11月30日 5个新的问题——关于软件工程 14:30 15:00 1 29 11月30日 最后的致意 15:20 16:40 3 17 11月30日 回忆整个学期——告学弟学妹 16:50 17:20 5 25 活动 11月25日 参与会议 16:30 17:30…
A friend is one who knows you and loves you just the same. 朋友就是懂你并爱你的人. Leave nothing for tomorrow which can be done today. 今天能做的,就不要拖到明天. Remember the deadline, and early start can gurantee an early and safe end. So, rather than to finish the work i…
Nothing happens unless first a dream. 一切始于梦想. When everything seems to be going against you, remember that the airplane takes off against the wind, not with it. 当一切似乎都不如意时,请记住,飞机也是逆风起飞的.…
A particular fine spring came around. 转眼又是一番分外明媚的春光. Hey, it is hot outside, sometimes even unbearable. But you know, the cool and pleasant weather is at the corner.   If you dream and you allow yourself to dream, you can do anything. 如果你有梦想,并且准许自己有梦…
I want to win a trophy, it's the most important. 我希望获得冠军奖杯,这是最重要的事情. Win a trophy, stand on the very peak point of your career, that may be the dream of every one. There must be a magic moment in your life. Just as Portugal, they have won the Europea…
题意:给定n*m个座椅,然后有b个是坏的,要做人,并且两个人不能相邻,问你最多坐多少人,最少坐多少人. 析:这个题其实并不难,只要当时一时没想清楚,结果就一直WA,就是最少的情况时,其实一个人可以占三个座位,而不是两个,就是这一点没想清楚,其他的就简单了. 代码如下: #include <cstdio> #include <string> #include <cstdlib> #include <cmath> #include <iostream>…
http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3782 题意:把输入的三元运算用计算机运算出来. ;          cin>>a>>n>>b>>m>>c;                                        s1=a*b;                               s1=a/b;                       …
http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3776 题意:比较两组数据的总和大小. #include <iostream> using namespace std; int main() { int t; cin>>t; while(t--) { int n,m,s1=0,s2=0,a[6],b[6]; cin>>n>>m; for(int i=0; i<n; i++) {…