我最亲爱的说

子非鱼,焉知鱼之乐.

导航

2012年11月21日 #

程序员到底怎么了?

摘要: 原文地址:http://developer.51cto.com/art/201206/341162.htm程序员到底怎么了,我们当然不否认有很多出色的程序员,他们生活的好,赚的也多,可是毕竟大多数都还是一般水平,很多还是挣扎在基本满足吃住的水平。特别深的问题,比如国家社会问题(总有人会说我们的社会把我们搞成了这个样子),我这里不想谈,我来结合自己的体会来讲讲我所认识的一些程序员都在怎样工作和生活。(@程序员的那些事 微博配图)我周围的程序员大都不喜欢程序员这个行业,总希望如果未来可能,一定要跳出这个圈,去做别的行业,有的说去做销售,有的说回老家开个小超市,有的说的更是离谱。我不知道为什么他们都 阅读全文

posted @ 2012-11-21 19:11 我最亲爱的说 阅读(206) 评论(0) 推荐(0)

编程实践5-3

摘要: 假定有一个数组,已经存放有互不相同的整数。输入一个数,要求从数组删除与该数相同的元素,并将其后的元素逐个向前替补,最后一个元素置0。输出删除后的数组。如原数组中无此数,则输出“无此数”。using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace _5_3{ class Program { static void Main(string[] args) { int[] dA; int i,j... 阅读全文

posted @ 2012-11-21 11:39 我最亲爱的说 阅读(118) 评论(0) 推荐(0)

摇色子(两颗色子)

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace _5_2{ class Program { static void Main(string[] args) { int[] dA; int dB; dA = new int[13]; Random r = new Random(); for (int i = 0; ... 阅读全文

posted @ 2012-11-21 11:05 我最亲爱的说 阅读(227) 评论(0) 推荐(0)

编程实践5-4

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace _5_3{ class Program { static void Main(string[] args) { int[] dA; int i, j; dA = new int[100]; for(i = 0;i<100;i++) { ... 阅读全文

posted @ 2012-11-21 10:50 我最亲爱的说 阅读(166) 评论(0) 推荐(0)