代码: /* test.java */ package test; public class test { public static void main(String args[] ) { CPU ccp= new CPU(); HardDisk hhd=new HardDisk(); PC pc =new PC(); ccp.setSpeed(2200); hhd.setAmount(200); pc.setCPU(ccp); pc.setHardDisk(hhd); pc.show();…