摘要: import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.*; public class Box { JFrame frame; JBu 阅读全文
posted @ 2016-10-31 21:02 姜顾蓉 阅读(98) 评论(0) 推荐(0)
摘要: 1.可以有方法简化单元测试吗?毕竟单元测试十分繁琐而且需要花费大量的时间,而且还只能由作者一个人完成? 2.如何把需求细化成任务来完成? 3.如果设计好的软件中存在小Bug但是并不是十分影响软件的性能和功能,而且消除它需要花费大量的人力时间的话,可以暂时不理会它吗? 4.在一个team中与人合作开发 阅读全文
posted @ 2016-10-18 16:33 姜顾蓉 阅读(127) 评论(0) 推荐(0)
摘要: #include "stdio.h" #include "string.h" #include "stdlib.h" int charcalculate=0; int wordcalculate=0; int linecalculate=0; void calculate(char * file) 阅读全文
posted @ 2016-10-17 09:49 姜顾蓉 阅读(118) 评论(0) 推荐(0)
摘要: public class cQuestion { public static String str = "";//保存题目的字符串 public static int num = 5;//每题中数的个数 public static int num_i = 0;//题目中已有数的个数 public s 阅读全文
posted @ 2016-10-17 09:42 姜顾蓉 阅读(132) 评论(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-17 21:42 姜顾蓉 阅读(124) 评论(0) 推荐(0)