摘要:
博文软件质量保障初探 软件质量这个词非常广泛,在不同语境下有不同的含义。下面是国际标准组织最近的定义: "Capability of software product to satisfy stated and implied needs under specified conditions." " 阅读全文
摘要:
package Test; public class Computer { public static int getFac(int n) { if(n == 1|| n==0) return 1; else //递归调用 return n*getFac(n-1); } } package Apppackage; import Test.Computer; public class app { p 阅读全文
摘要:
package Test; public class test5 { int count; public static void main(String[] args) { // TODO Auto-generated method stub //建立矩形的类的对象 Rectangle rect = 阅读全文