摘要: 转发地址:http://blog.jobbole.com/17520/在一个阴雨的早上,我坐在桌子旁,开始想如何才能高效的工作。在我成为一个自由职业者之前,我有很长一段时间都很努力工作,但收效甚微。我在2006开始接触禅学。我马上意识到:古代的禅宗大师们几百年前早就已经知道现今的程序员应该如何工作。虽然我很讨厌“如何成为一个更好的程序员”之类的文章,但我仍旧想分享一些我的想法。它对我来说起到个提醒的作用,如果你有什么想法,也请留言。0.专注 | Focus如果你决定开始工作,请尽力的做好它。不要同一时间做几件事情。一次只做一件事情。如果你多线程工作的话,你不一定会更快。多线程会让你精疲力尽,出 阅读全文
posted @ 2013-04-16 22:00 多解方程式 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 题目地址:http://pat.zju.edu.cn/contests/pat-b-practise/1008 1 #include<stdio.h> 2 3 int n; 4 int m; 5 int num[105]; 6 int i; 7 int count = 0; 8 int main() 9 {10 scanf("%d%d", &n, &m);11 m = n - m % n;12 for( i = 0; i < n; ++i )13 {14 scanf( "%d", &num[i] ); 15 }1 阅读全文
posted @ 2013-04-16 21:58 多解方程式 阅读(3628) 评论(0) 推荐(0) 编辑
摘要: 题目地址:http://pat.zju.edu.cn/contests/pat-b-practise/1004 1 #include<iostream> 2 #include<string> 3 #include<vector> 4 5 using namespace std; 6 7 typedef struct{ 8 string name; 9 string stu_id;10 int grade;11 }stu;12 13 int person_num = 0;14 int i;15 int main()16 {17 stu max, min;18 阅读全文
posted @ 2013-04-16 21:50 多解方程式 阅读(2032) 评论(0) 推荐(0) 编辑
摘要: 题目地址:http://pat.zju.edu.cn/contests/pat-b-practise/1007 1 #include<stdio.h> 2 #include<math.h> 3 4 int i, j; 5 int num[100005]; 6 int n; 7 int count = 0; 8 int temp = 0; 9 int main()10 {11 scanf("%d", &n);12 num[0] = 2;13 num[1] = 3;14 count = 2;15 for( i = 4; i <= n; ++ 阅读全文
posted @ 2013-04-16 21:48 多解方程式 阅读(1124) 评论(0) 推荐(0) 编辑
摘要: 题目地址:http://pat.zju.edu.cn/contests/pat-b-practise/1009 1 #include<stdio.h> 2 #include<string.h> 3 4 typedef struct{ 5 int start; 6 int len; 7 }MARK; 8 MARK mark[100]; 9 10 11 int isBlank = 0; 12 int len = 0;13 int count = 0;14 char str[100];15 int i = 0;16 int j = 0;17 int temp;18 int m 阅读全文
posted @ 2013-04-16 15:23 多解方程式 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 题目地址:http://pat.zju.edu.cn/contests/pat-b-practise/1006 1 #include<stdio.h> 2 3 int main() 4 { 5 int n; 6 int g, s, b, i; 7 g = s = b = 0; 8 scanf( "%d", &n ); 9 g = n % 10;10 n = n / 10;11 if( n != 0 )12 {13 s = n % 10;14 n = n / 10; 15 }16 ... 阅读全文
posted @ 2013-04-16 14:39 多解方程式 阅读(148) 评论(0) 推荐(0) 编辑