摘要: 1.有人认为,"中文编程"是解决中国程序员编程效率的一个秘密武器,请问它是一个"银弹"么? 2.软件工程师的工作就是写代码,相关专业的练习也是以阅读代码、写代码为主、那么代码量和工程师的水平是线性的关系么? 3.团队模式和团队的开发模式有什么关系? 4.Coder和Hacker的区别. 5.我们经常 阅读全文
posted @ 2016-10-14 23:00 总下雨 阅读(78) 评论(0) 推荐(0)
摘要: 我叫潘卓华,来自江苏常州,是南京理工大学泰州科技学院移动互联学院大三的学生。最近在学习软件工程基础,这门学科很深奥。翻开新书,一串串英文代码映入眼前,首先掠过脑海的是不懂。但一开始并没有慌,因为想想,老师没讲,讲了也许就懂了,也没太在意但真正上课时,发现还是不懂,加上以前有基础的同学在课堂上表现积极 阅读全文
posted @ 2016-10-14 22:53 总下雨 阅读(124) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <stdlib.h> #include <time.h> main(){ char i; int a,b,c,d,e,f,g,n,m; printf("*********四则运算生成*********\n"); printf("1.开始\n") 阅读全文
posted @ 2016-10-14 22:42 总下雨 阅读(118) 评论(0) 推荐(0)
摘要: #include <stdio.h>#include <math.h>int main() {double a1,b1,c1,a2,b2,c2,d,e,f;printf("a1 b1 c1 : ");scanf("%lf %lf %lf",&a1,&b1,&c1);printf("a2 b2 c2 阅读全文
posted @ 2016-10-14 22:41 总下雨 阅读(129) 评论(0) 推荐(0)
摘要: public class Queen8 { public static int num = 0; //累计方案总数 public static final int MAXQUEEN = 8;//皇后个数,同时也是棋盘行列总数 public static int[] cols = new int[MA 阅读全文
posted @ 2016-09-25 16:12 总下雨 阅读(101) 评论(0) 推荐(0)