摘要:
/** * Finds and prints n prime integers * Jeff Offutt, Spring 2003 */ private static void printPrimes(int n) { int curPrime; //Value currently conside 阅读全文
摘要:
Tasks: Description of triangle problem: Function triangle takes three integers a,b,c which are length of triangle sides; calculates whether the triang 阅读全文
摘要:
Homework 1 Briefly describe an error from my past projects. 很久以前的一个项目,忘了具体的代码,以下是error大致内容: 然后12行报错,导致整个项目无法继续。 后来通过上网查找,才知道错误原因: 原来子类的无论是无参构造方法还是有参构造 阅读全文